diff --git a/.github/workflows/docker-multistage-build.yml b/.github/workflows/docker-multistage-build.yml index d6bed0a..c8f68e8 100644 --- a/.github/workflows/docker-multistage-build.yml +++ b/.github/workflows/docker-multistage-build.yml @@ -119,13 +119,13 @@ jobs: # Artifact Import # ------------------------------------------------------------ - name: "[Artifact Load] Download previously built image" - uses: cytopia/download-artifact-retry-action@v0.1.5 + uses: linuxeye/download-artifact-retry-action@master with: name: ${{ steps.set-artifact-name.outputs.prev }} if: ${{ inputs.stage_prev != '' }} - name: "[Artifact Load] Import previously built image" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make load INFILE=${{ steps.set-artifact-name.outputs.prev }} @@ -136,14 +136,14 @@ jobs: # Build # ------------------------------------------------------------ - name: Pull - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make docker-pull-base-image VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }} if: ${{ inputs.pull_base_image }} - name: Build - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make build VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }} @@ -153,7 +153,7 @@ jobs: # Test # ------------------------------------------------------------ - name: Test - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make test VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }} @@ -164,7 +164,7 @@ jobs: # Push # ------------------------------------------------------------ - name: Docker Tag - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make tag VERSION="${{ matrix.VERSION }}" STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -177,7 +177,7 @@ jobs: if: ${{ inputs.push_image }} - name: Docker push - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make push VERSION="${{ matrix.version }}" STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -188,7 +188,7 @@ jobs: # Artifact Export # ------------------------------------------------------------ - name: "[Artifact Save] Upload built artifact" - uses: cytopia/upload-artifact-retry-action@v0.1.7 + uses: linuxeye/upload-artifact-retry-action@master with: name: ${{ steps.set-artifact-name.outputs.curr }} path: ${{ steps.set-artifact-name.outputs.curr }} diff --git a/.github/workflows/docker-multistage-configure.yml b/.github/workflows/docker-multistage-configure.yml index fe7c741..3ecc95b 100644 --- a/.github/workflows/docker-multistage-configure.yml +++ b/.github/workflows/docker-multistage-configure.yml @@ -170,7 +170,7 @@ jobs: ### - name: "[Set-Output] has_refs and ref-matrix" id: set-refs - uses: cytopia/git-ref-matrix-action@v0.1.13 + uses: linuxeye/git-ref-matrix-action@master with: repository_default_branch: ${{ steps.eval-refs.outputs.default_branch }} branches: ${{ steps.eval-refs.outputs.branches }} diff --git a/.github/workflows/docker-multistage-push-image.yml b/.github/workflows/docker-multistage-push-image.yml index 3e31301..0e256d9 100644 --- a/.github/workflows/docker-multistage-push-image.yml +++ b/.github/workflows/docker-multistage-push-image.yml @@ -95,12 +95,12 @@ jobs: ### Download and import previously built image ### - name: "[Artifact Load] Download previously built image" - uses: cytopia/download-artifact-retry-action@v0.1.5 + uses: linuxeye/download-artifact-retry-action@master with: name: ${{ steps.set-artifact-name.outputs.curr }} - name: "[Artifact Load] Import previously built image" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make load INFILE=${{ steps.set-artifact-name.outputs.curr }} @@ -110,7 +110,7 @@ jobs: # Re-tag images # ------------------------------------------------------------ - name: "[Docker Tag] Retag" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make tag VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -135,7 +135,7 @@ jobs: # Push images # ------------------------------------------------------------ - name: Push Image - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make push VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }} TAG=${{ steps.tag.outputs.docker-tag }} diff --git a/.github/workflows/docker-multistage-push-manifest.yml b/.github/workflows/docker-multistage-push-manifest.yml index 85fbad1..ce4e20a 100644 --- a/.github/workflows/docker-multistage-push-manifest.yml +++ b/.github/workflows/docker-multistage-push-manifest.yml @@ -106,7 +106,7 @@ jobs: # Create Manifest # ------------------------------------------------------------ - name: "[Create Manifest] (${{ steps.manifest.outputs.arches }})" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make manifest-create VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -116,7 +116,7 @@ jobs: # Deploy Manifest # ------------------------------------------------------------ - name: "[Push Manifest] ${{ steps.tag.outputs.docker-tag }}" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make manifest-push VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} TAG=${{ steps.tag.outputs.docker-tag }} diff --git a/.github/workflows/docker-multistage-test.yml b/.github/workflows/docker-multistage-test.yml index 99d64df..53cc14d 100644 --- a/.github/workflows/docker-multistage-test.yml +++ b/.github/workflows/docker-multistage-test.yml @@ -77,12 +77,12 @@ jobs: ### Download and import previously built image ### - name: "[Artifact Load] Download previously built image" - uses: cytopia/download-artifact-retry-action@v0.1.5 + uses: linuxeye/download-artifact-retry-action@master with: name: ${{ steps.set-artifact-name.outputs.curr }} - name: "[Artifact Load] Import previously built image" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make load INFILE=${{ steps.set-artifact-name.outputs.curr }} @@ -92,7 +92,7 @@ jobs: # Test # ------------------------------------------------------------ - name: Test - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make test VERSION=${{ matrix.VERSION }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.FLAVOUR }} ARCH=${{ matrix.ARCH }} diff --git a/.github/workflows/docker-name-version-arch.yml b/.github/workflows/docker-name-version-arch.yml index 414d9e2..853e284 100644 --- a/.github/workflows/docker-name-version-arch.yml +++ b/.github/workflows/docker-name-version-arch.yml @@ -159,13 +159,13 @@ jobs: # Build # ------------------------------------------------------------ - name: Pull Base - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make docker-pull-base-image NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" ARCH=${{ matrix.arch }} - name: Build - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: retries: 10 pause: 5 @@ -176,7 +176,7 @@ jobs: # Test # ------------------------------------------------------------ - name: Test - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make test NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -192,7 +192,7 @@ jobs: if: needs.configure.outputs.can_login == 1 && inputs.can_deploy - name: Docker push architecture image - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make push NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -254,13 +254,13 @@ jobs: password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: "[DEPLOY] Create Docker manifest for architectures: ${{ steps.manifest.outputs.arches }}" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make manifest-create NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }} - name: "[DEPLOY] Publish Docker manifest: ${{ steps.tag.outputs.docker-tag }}" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make manifest-push NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" TAG=${{ steps.tag.outputs.docker-tag }} diff --git a/.github/workflows/docker-name-version-flavour-arch.yml b/.github/workflows/docker-name-version-flavour-arch.yml index 4252027..c81c17f 100644 --- a/.github/workflows/docker-name-version-flavour-arch.yml +++ b/.github/workflows/docker-name-version-flavour-arch.yml @@ -159,13 +159,13 @@ jobs: # Build # ------------------------------------------------------------ - name: Pull Base - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make docker-pull-base-image VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} - name: Build - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: retries: 10 pause: 5 @@ -176,7 +176,7 @@ jobs: # Test # ------------------------------------------------------------ - name: Test - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make test NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -192,7 +192,7 @@ jobs: if: needs.configure.outputs.can_login == 1 && inputs.can_deploy - name: Docker push architecture image - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make push NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} TAG=${{ steps.tag.outputs.docker-tag }} @@ -254,13 +254,13 @@ jobs: password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: "[DEPLOY] Create Docker manifest for architectures: ${{ steps.manifest.outputs.arches }}" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make manifest-create NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }} - name: "[DEPLOY] Publish Docker manifest: ${{ steps.tag.outputs.docker-tag }}" - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make manifest-push NAME=${{ matrix.name }} VERSION="${{ matrix.version }}" FLAVOUR=${{ matrix.flavour }} TAG=${{ steps.tag.outputs.docker-tag }} diff --git a/.github/workflows/lint-generic.yml b/.github/workflows/lint-generic.yml index 283692e..ee2077a 100644 --- a/.github/workflows/lint-generic.yml +++ b/.github/workflows/lint-generic.yml @@ -19,25 +19,25 @@ jobs: fetch-depth: 0 - name: Lint Files - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make lint-files - name: Lint Yaml - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make lint-yaml - name: Lint JSON - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make lint-json - name: Lint Bash - uses: cytopia/shell-command-retry-action@v0.1.6 + uses: linuxeye/shell-command-retry-action@master with: command: | make lint-bash