From ab357eca1e7cbaab1d4aa81b32bce336a1b62383 Mon Sep 17 00:00:00 2001 From: Shao Yu-Lung Date: Mon, 2 Oct 2023 09:15:32 +0800 Subject: [PATCH] devops: upgrade to docker/login-action@v3 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65b266f..b77cffe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Login to Docker Hub if: ${{ (github.event_name != 'pull_request') && (github.ref == 'refs/heads/master') }} - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }}