From a3e8d34d74aa653acb53eff53781796db2fd6e39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 09:09:23 -0600 Subject: [PATCH] build(deps): bump docker/login-action from 3.1.0 to 3.2.0 (#2225) Bumps [docker/login-action](https://github.com/docker/login-action) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/qns.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/qns.yml b/.github/workflows/qns.yml index 8766148244..cfd772a5bd 100644 --- a/.github/workflows/qns.yml +++ b/.github/workflows/qns.yml @@ -364,7 +364,7 @@ jobs: # authenticate pull to avoid hitting pull quota - name: Login to Amazon Elastic Container Registry Public if: github.repository == github.event.pull_request.head.repo.full_name - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.2.0 with: registry: public.ecr.aws username: ${{ secrets.AWS_ACCESS_KEY_ID }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4652872968..8d22830ccd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: echo "tags=${TAGS}" >> $GITHUB_OUTPUT - name: Login to Amazon Elastic Container Registry Public - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.2.0 if: github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name with: registry: public.ecr.aws @@ -50,7 +50,7 @@ jobs: password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Login to GitHub Container Registry - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.2.0 if: github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name with: registry: ghcr.io