diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index 6621a44a7..27993005d 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -182,7 +182,7 @@ jobs: - name: Pull image from integration test ECR and Upload to public release ECR and Dockerhub if: steps.release-version-image.outputs.cache-hit != 'true' - uses: akhilerm/tag-push-action@v2.1.0 + uses: akhilerm/tag-push-action@v2.2.0 with: src: public.ecr.aws/${{ env.ECR_REPO_INTEGRATION_TEST }}:${{ needs.release-checking.outputs.testing_version }} dst: | @@ -191,7 +191,7 @@ jobs: - name: Pull image from release ECR, tag as latest and push to public release ECR and DockerHub if: ${{ needs.release-checking.outputs.latest-or-newer == 'true' && steps.release-version-image.outputs.cache-hit != 'true'}} - uses: akhilerm/tag-push-action@v2.1.0 + uses: akhilerm/tag-push-action@v2.2.0 with: src: public.ecr.aws/${{ env.ECR_REPO }}:${{ needs.release-checking.outputs.version }} dst: | diff --git a/.github/workflows/rollback-operator.yml b/.github/workflows/rollback-operator.yml index e9573a944..df3d2d635 100644 --- a/.github/workflows/rollback-operator.yml +++ b/.github/workflows/rollback-operator.yml @@ -45,7 +45,7 @@ jobs: env: AWS_REGION: us-east-1 - name: Rollback ECR latest - uses: akhilerm/tag-push-action@v2.1.0 + uses: akhilerm/tag-push-action@v2.2.0 with: src: public.ecr.aws/${{ env.ECR_REPO }}:${{ github.event.inputs.rollback-version }} dst: public.ecr.aws/${{ env.ECR_REPO }}:latest diff --git a/.github/workflows/rollback.yml b/.github/workflows/rollback.yml index 50c4e7c6d..d2aaf4229 100644 --- a/.github/workflows/rollback.yml +++ b/.github/workflows/rollback.yml @@ -211,12 +211,12 @@ jobs: env: AWS_REGION: us-east-1 - name: Rollback ECR latest - uses: akhilerm/tag-push-action@v2.1.0 + uses: akhilerm/tag-push-action@v2.2.0 with: src: public.ecr.aws/${{ env.ECR_REPO }}:${{ github.event.inputs.rollback-version }} dst: public.ecr.aws/${{ env.ECR_REPO }}:latest - name: Rollback DockerHub latest - uses: akhilerm/tag-push-action@v2.1.0 + uses: akhilerm/tag-push-action@v2.2.0 with: src: ${{ env.DOCKERHUB_REPO }}:${{ github.event.inputs.rollback-version }} dst: ${{ env.DOCKERHUB_REPO }}:latest