From 289bcd8b642b608edd26c5adc1012342ea52704b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 11 May 2022 16:34:40 +0100 Subject: [PATCH] chore(deps): update docker/login-action action to v2 (#1415) Co-authored-by: Renovate Bot --- .github/actions/setup-docker-environment/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-docker-environment/action.yaml b/.github/actions/setup-docker-environment/action.yaml index 94da7514..1320e3e4 100644 --- a/.github/actions/setup-docker-environment/action.yaml +++ b/.github/actions/setup-docker-environment/action.yaml @@ -38,13 +38,13 @@ runs: - name: Login to DockerHub if: ${{ github.ref == 'master' && github.event.pull_request.merged == true }} - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ inputs.username }} password: ${{ inputs.password }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 if: ${{ github.ref == 'master' && github.event.pull_request.merged == true }} with: registry: ghcr.io