From d38d0b8de0e1dbe8d0c6f0bae3b183874d222d65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 08:16:26 -0400 Subject: [PATCH] chore(deps): bump docker/login-action from 2 to 3 (#4069) Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 82449f4ca3..616f9e5116 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -53,13 +53,13 @@ jobs: - name: Login to Docker Hub # Only push to Docker Hub when making a release if: ${{ github.event_name == 'release' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 # Skip when PR from a fork if: ${{ !github.event.pull_request.head.repo.fork }} with: @@ -137,13 +137,13 @@ jobs: - name: Login to Docker Hub # Only push to Docker Hub when making a release if: ${{ github.event_name == 'release' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 # Skip when PR from a fork if: ${{ !github.event.pull_request.head.repo.fork }} with: