From 6ea1b2fd9e9a2adc8d12302567bbbff24253b5a5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 01:47:42 +0000 Subject: [PATCH] chore(deps): update github actions (major) --- .github/workflows/docker-image-to-aws-ecr.yaml | 4 ++-- .github/workflows/ecr-publish.yaml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-image-to-aws-ecr.yaml b/.github/workflows/docker-image-to-aws-ecr.yaml index 248f954..a404c8e 100644 --- a/.github/workflows/docker-image-to-aws-ecr.yaml +++ b/.github/workflows/docker-image-to-aws-ecr.yaml @@ -60,7 +60,7 @@ jobs: aws-region: ${{ secrets.AWS_REGION }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3 + uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4 - name: Login to Amazon ECR id: login-ecr @@ -79,7 +79,7 @@ jobs: # We could also cache the cache mounts used in the Dockerfile but do not, # see https://docs.docker.com/build/ci/github-actions/cache/ - name: Build and push - uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6 + uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7 with: push: true tags: ${{ secrets.AWS_ECR }}/${{ inputs.IMAGE_NAME }}:${{ inputs.IMAGE_TAG }} diff --git a/.github/workflows/ecr-publish.yaml b/.github/workflows/ecr-publish.yaml index 58b117f..9d64797 100644 --- a/.github/workflows/ecr-publish.yaml +++ b/.github/workflows/ecr-publish.yaml @@ -65,7 +65,7 @@ jobs: aws-region: us-east-1 # This is the region for the public ECR - name: Set up Docker Buildx - uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3 + uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4 - name: Login to Amazon ECR id: login-ecr-public @@ -79,7 +79,7 @@ jobs: - name: Docker metadata (auto-generated tags) id: meta-auto if: inputs.IMAGE_TAG == '' - uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5 + uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6 with: images: ${{ steps.login-ecr-public.outputs.registry }}/${{ inputs.AWS_ECR_ALIAS }}/${{ inputs.IMAGE_NAME }} flavor: | @@ -98,7 +98,7 @@ jobs: - name: Docker metadata (explicit tag) id: meta-override if: inputs.IMAGE_TAG != '' - uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5 + uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6 with: images: ${{ steps.login-ecr-public.outputs.registry }}/${{ inputs.AWS_ECR_ALIAS }}/${{ inputs.IMAGE_NAME }} flavor: | @@ -114,7 +114,7 @@ jobs: # We could also cache the cache mounts used in the Dockerfile but do not, # see https://docs.docker.com/build/ci/github-actions/cache/ - name: Build and push - uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6 + uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7 with: context: ${{ inputs.BUILD_CONTEXT }} push: true