Skip to content

Commit fc3ecda

Browse files
Update docker/login-action action to v4
1 parent d6d123c commit fc3ecda

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ jobs:
117117
-
118118
name: Login into Docker Hub
119119
if: env.exists == 'false'
120-
uses: docker/login-action@v3
120+
uses: docker/login-action@v4
121121
with:
122122
username: ${{ secrets.DOCKERHUB_USERNAME }}
123123
password: ${{ secrets.DOCKERHUB_TOKEN }}
124124
-
125125
name: Login to GitHub Container Registry
126126
if: env.exists == 'false'
127-
uses: docker/login-action@v3
127+
uses: docker/login-action@v4
128128
with:
129129
registry: ghcr.io
130130
username: ${{ github.actor }}

.github/workflows/docker-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
- uses: actions/checkout@v2
99
with:
1010
fetch-depth: 0
11-
- uses: docker/login-action@v1
11+
- uses: docker/login-action@v4
1212
with:
1313
registry: ghcr.io
1414
username: ${{ github.repository_owner }}
1515
password: ${{ secrets.GITHUB_TOKEN }}
16-
- uses: docker/login-action@v1
16+
- uses: docker/login-action@v4
1717
if: 0
1818
with:
1919
username: voidic

0 commit comments

Comments
 (0)