diff options
| author | chrislu <chris.lu@gmail.com> | 2023-01-16 12:40:09 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-01-16 12:40:09 -0800 |
| commit | b930acc6701771a03f7bf5125f80fa0e820febb1 (patch) | |
| tree | 8d0c28eefc74e01f373c7a73e864e00aac440b3a | |
| parent | 4bbdb09b30fa1e0291bbb063cfde6b4b1bb34171 (diff) | |
| download | seaweedfs-csi-driver-b930acc6701771a03f7bf5125f80fa0e820febb1.tar.xz seaweedfs-csi-driver-b930acc6701771a03f7bf5125f80fa0e820febb1.zip | |
fix login error
env:
RELEASE_VERSION: 101_merge
Warning: The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Warning: The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Warning: The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Error: Username and password required
| -rw-r--r-- | .github/workflows/dev.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/versioned_release.yaml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index 3888aab..c570fd1 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -53,7 +53,7 @@ jobs: - name: Login to DockerHub # if: ${{ startsWith(github.ref, 'refs/tags/') }} - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: # username: ${{ secrets.DOCKERHUB_USERNAME }} username: chrislusf diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6e6dde2..e162fb2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -54,7 +54,7 @@ jobs: - name: Login to DockerHub # if: ${{ startsWith(github.ref, 'refs/tags/') }} - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: # username: ${{ secrets.DOCKERHUB_USERNAME }} username: chrislusf diff --git a/.github/workflows/versioned_release.yaml b/.github/workflows/versioned_release.yaml index b85b15c..4db3ed1 100644 --- a/.github/workflows/versioned_release.yaml +++ b/.github/workflows/versioned_release.yaml @@ -54,7 +54,7 @@ jobs: - name: Login to DockerHub # if: ${{ startsWith(github.ref, 'refs/tags/') }} - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: # username: ${{ secrets.DOCKERHUB_USERNAME }} username: chrislusf |
