From 4d44c3c63dd7afb62ba6a22ede79b111e1560e47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Oct 2022 03:05:06 +0000 Subject: [PATCH] Bump docker/login-action from 1.10.0 to 2.1.0 Bumps [docker/login-action](https://github.com/docker/login-action) from 1.10.0 to 2.1.0. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1.10.0...v2.1.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/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fa19061..1fe37c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -156,14 +156,14 @@ jobs: dgoss run ghcr.io/${{ github.repository_owner }}/${{needs.prep.outputs.repo_name}}:test - name: Login to DockerHub - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v2.1.0 if: github.event_name != 'pull_request' && needs.tag-does-not-exist.outputs.exists == 'false' with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v2.1.0 if: github.event_name != 'pull_request' && needs.tag-does-not-exist.outputs.exists == 'false' with: registry: ghcr.io @@ -171,7 +171,7 @@ jobs: password: ${{ secrets.CR_PAT }} - name: Login to Quay Registry - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v2.1.0 if: github.event_name != 'pull_request' && needs.tag-does-not-exist.outputs.exists == 'false' with: registry: quay.io