Skip to content

Commit 0d91290

Browse files
committed
Upding GitHub Actions to fix the error: "Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20" Mode details here: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
1 parent 50bed49 commit 0d91290

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,25 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Log in to the Container registry
24-
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
24+
uses: docker/login-action@v3
2525
with:
2626
registry: ${{ env.REGISTRY }}
2727
username: ${{ github.actor }}
2828
password: ${{ secrets.GH_PAT }}
2929

3030
- name: Extract metadata (tags, labels) for Docker
3131
id: meta
32-
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
32+
uses: docker/metadata-action@v5
3333
with:
3434
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3535
tags: |
3636
type=semver,pattern={{version}}
3737
3838
- name: Build and push Docker image
39-
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
39+
uses: docker/build-push-action@v5
4040
with:
4141
context: .
4242
file: ./container/Dockerfile

0 commit comments

Comments
 (0)