From 58dadefc99d1ec015e1d45845f33a91cf6679b11 Mon Sep 17 00:00:00 2001 From: LinkinStars Date: Fri, 17 Nov 2023 16:40:58 +0800 Subject: [PATCH] ci(github): update docker login action version and config username --- .github/workflows/build-image-for-release.yml | 4 ++-- .github/workflows/build-image-for-test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-image-for-release.yml b/.github/workflows/build-image-for-release.yml index a4ad5ff1b..d6db22792 100644 --- a/.github/workflows/build-image-for-release.yml +++ b/.github/workflows/build-image-for-release.yml @@ -51,9 +51,9 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKERHUB_USER }} + username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push diff --git a/.github/workflows/build-image-for-test.yml b/.github/workflows/build-image-for-test.yml index 6a099d02d..469898156 100644 --- a/.github/workflows/build-image-for-test.yml +++ b/.github/workflows/build-image-for-test.yml @@ -44,9 +44,9 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKERHUB_USER }} + username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push