From 846307e4c8e857c82f6e4d5c252761042bcb1854 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 11:01:13 +0000 Subject: [PATCH] Update docker/login-action action to v3 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 140c7a7..4e4b231 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,14 +37,14 @@ jobs: - name: Login to DockerHub if: ${{ github.ref == 'refs/heads/master' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: jakejarvis password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: Login to GitHub Container Registry if: ${{ github.ref == 'refs/heads/master' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }}