Skip to content

Commit 92d1bbb

Browse files
authored
Merge pull request #648 from lu-bann/fix-release-ci
docker login use v3
2 parents 3afde32 + 0790b81 commit 92d1bbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "TAG=$(git describe --tags)" >> $GITHUB_ENV
3030

3131
- name: Log in to Docker Hub
32-
uses: docker/login-action@v1
32+
uses: docker/login-action@v3
3333
with:
3434
username: ${{ secrets.DOCKER_USERNAME }}
3535
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: echo "TAG=$(git describe --tags)" >> $GITHUB_ENV
4040

4141
- name: Log in to GitHub Container Registry
42-
uses: docker/login-action@v1
42+
uses: docker/login-action@v3
4343
with:
4444
registry: ghcr.io
4545
username: ${{ github.actor }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
username: ${{ secrets.DOCKER_USERNAME }}
3737
password: ${{ secrets.DOCKER_PASSWORD }}
3838
- name: Log in to GitHub Container Registry
39-
uses: docker/login-action@v1
39+
uses: docker/login-action@v3
4040
with:
4141
registry: ghcr.io
4242
username: ${{ github.actor }}

0 commit comments

Comments
 (0)