From 03c9f4208ce66cff4ddb4f6909d6f4d72dafbb30 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 26 Mar 2022 14:31:10 +0000 Subject: [PATCH] Update docker/login-action action to v1.14.1 --- .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 68fba36..3941ab5 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@v1.14.1 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@v1.14.1 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@v1.14.1 if: github.event_name != 'pull_request' && needs.tag-does-not-exist.outputs.exists == 'false' with: registry: quay.io