From 9da1c2382cc76e8f68279d25608c2b34202f97a0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:57:21 +0000 Subject: [PATCH] chore(deps): update docker/login-action action to v3 --- .github/workflows/image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index efac9c4..087e30f 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -59,14 +59,14 @@ jobs: install: true # login to docker hub - - uses: docker/login-action@v2 + - uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} # login to github container registry - - uses: docker/login-action@v2 + - uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io