From cad8dd7120fb4519d7f9ad7fddeedba1ff9ba329 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 19:40:52 +0000 Subject: [PATCH] Bump docker/login-action from 1 to 3 Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-image.yml | 4 ++-- .github/workflows/build-reports-image.yml | 2 +- .github/workflows/tag-latest-prod-image.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 1868e9eb..0404f41e 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -119,14 +119,14 @@ jobs: # Must use docker login in order to specify public registry - name: Login to Public ECR if: ${{ github.actor != 'dependabot[bot]' }} - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ${{ needs.prep.outputs.registryEcr }} username: ${{ secrets.AWS_ACCESS_KEY_ID }} password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ needs.prep.outputs.registryGhcr }} username: ${{ github.actor }} diff --git a/.github/workflows/build-reports-image.yml b/.github/workflows/build-reports-image.yml index 3776e904..5f0c960e 100644 --- a/.github/workflows/build-reports-image.yml +++ b/.github/workflows/build-reports-image.yml @@ -76,7 +76,7 @@ jobs: # Must use docker login in order to specify public registry - name: Login to Public ECR - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: public.ecr.aws username: ${{ secrets.AWS_ACCESS_KEY_ID }} diff --git a/.github/workflows/tag-latest-prod-image.yml b/.github/workflows/tag-latest-prod-image.yml index 329cad77..6f307cc5 100644 --- a/.github/workflows/tag-latest-prod-image.yml +++ b/.github/workflows/tag-latest-prod-image.yml @@ -69,14 +69,14 @@ jobs: # Must use docker login in order to specify public registry - name: Login to Public ECR - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ${{ needs.prep.outputs.registry_ecr }} username: ${{ secrets.AWS_ACCESS_KEY_ID }} password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ needs.prep.outputs.registry_ghcr }} username: ${{ github.actor }}