From 6eb3c40f42c32e52454dbf5084810f012ebd38b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 04:46:08 +0000 Subject: [PATCH] Github Actions(deps): Bump docker/login-action from 1.10.0 to 3.2.0 Bumps [docker/login-action](https://github.com/docker/login-action) from 1.10.0 to 3.2.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1.10.0...v3.2.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/container-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container-release.yml b/.github/workflows/container-release.yml index 23175c3..645b783 100644 --- a/.github/workflows/container-release.yml +++ b/.github/workflows/container-release.yml @@ -35,7 +35,7 @@ jobs: - name: Login to DockerHub id: login-dockerhub if: success() - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v3.2.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_ACCESSTOKEN }} @@ -43,7 +43,7 @@ jobs: - name: Login to GitHub Container Registry id: login-ghcr if: success() - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v3.2.0 with: registry: ghcr.io username: ${{ github.repository_owner }}