From 9b26e3b7de16ace93056e8f27d12bde4b97ffb3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 11:45:13 +0800 Subject: [PATCH] build(deps): bump docker/login-action from 2 to 3 (#1706) 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/registry.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/registry.yaml b/.github/workflows/registry.yaml index 5d03cab7d6f..408688f0b41 100644 --- a/.github/workflows/registry.yaml +++ b/.github/workflows/registry.yaml @@ -34,7 +34,7 @@ jobs: id: buildx uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} @@ -60,7 +60,7 @@ jobs: id: buildx uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.ALI_REGISTRY }} username: ${{ secrets.ALI_REGISTRY_USERNAME }} @@ -87,7 +87,7 @@ jobs: id: buildx uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.GITHUB_REGISTRY }} username: ${{ secrets.GH_REGISTRY_USERNAME }}