From e80a1a3f2c11f7feda2d29ba20aaa033eb31172f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 7 Jun 2023 14:19:42 +0000 Subject: [PATCH] Update docker/login-action action to v2.2.0 --- .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 b0a2f22..beb2fd6 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@v2.0.0 + uses: docker/login-action@v2.2.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@v2.0.0 + uses: docker/login-action@v2.2.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@v2.0.0 + uses: docker/login-action@v2.2.0 if: github.event_name != 'pull_request' && needs.tag-does-not-exist.outputs.exists == 'false' with: registry: quay.io