From 4137d119fc27178ff04efb7fcb1c0e3b26045657 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 19:29:05 +0000 Subject: [PATCH] Bump docker/login-action from 2 to 3 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] --- .github/workflows/release.yaml | 6 +++--- .github/workflows/release_test.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 860ba13..81de1a0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,20 +29,20 @@ jobs: uses: docker/setup-buildx-action@v3 - name: "Login to DockerHub" if: steps.tagging.outputs.part - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: "Login to Quay.io" if: steps.tagging.outputs.part - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: quay.io username: ${{ secrets.QUAY_BOT_USERNAME }} password: ${{ secrets.QUAY_BOT_PASSWORD }} - name: "Login to ghcr.io" if: steps.tagging.outputs.part - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/release_test.yaml b/.github/workflows/release_test.yaml index 812ad2d..6fa9db7 100644 --- a/.github/workflows/release_test.yaml +++ b/.github/workflows/release_test.yaml @@ -33,20 +33,20 @@ jobs: uses: docker/setup-buildx-action@v3 - name: "Login to DockerHub" if: steps.tagging.outputs.part - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: "Login to Quay.io" if: steps.tagging.outputs.part - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: quay.io username: ${{ secrets.QUAY_BOT_USERNAME }} password: ${{ secrets.QUAY_BOT_PASSWORD }} - name: "Login to ghcr.io" if: steps.tagging.outputs.part - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }}