diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 51d55df..0365842 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -30,13 +30,13 @@ jobs: with: install: true - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: (github.ref != 'refs/heads/master' && github.event_name != 'pull_request') || github.event_name == 'schedule' with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: (github.ref != 'refs/heads/master' && github.event_name != 'pull_request') || github.event_name == 'schedule' with: registry: ghcr.io