Skip to content

Commit 231918e

Browse files
authored
Upgrade docker/login-action to v4 (#28)
The v3 line uses Node.js 20 which is deprecated by GitHub Actions. v4 upgrades to Node.js 24.
1 parent 1451c45 commit 231918e

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/update-nightly-image.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
- name: Checkout source
2525
uses: actions/checkout@v6.0.2
2626
- name: Login to GitHub Container Registry
27-
# v2.2.0
28-
uses: docker/login-action@5139682d94efc37792e6b54386b5b470a68a4737
27+
uses: docker/login-action@v4
2928
with:
3029
registry: ghcr.io
3130
username: ${{ github.repository_owner }}

.github/workflows/update-release-image.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
- name: Checkout source
2525
uses: actions/checkout@v6.0.2
2626
- name: Login to GitHub Container Registry
27-
# v2.2.0
28-
uses: docker/login-action@5139682d94efc37792e6b54386b5b470a68a4737
27+
uses: docker/login-action@v4
2928
with:
3029
registry: ghcr.io
3130
username: ${{ github.repository_owner }}
@@ -56,8 +55,7 @@ jobs:
5655
- name: Checkout source
5756
uses: actions/checkout@v6.0.2
5857
- name: Login to GitHub Container Registry
59-
# v2.2.0
60-
uses: docker/login-action@5139682d94efc37792e6b54386b5b470a68a4737
58+
uses: docker/login-action@v4
6159
with:
6260
registry: ghcr.io
6361
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)