Skip to content

Commit ba097d2

Browse files
committed
Upgrade GitHub Actions versions to use Node 16 based runtime
Node 14 is deprecated and is EOL on 30 Apr 2023
1 parent 8ab2861 commit ba097d2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ jobs:
2121

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Log into registry ${{ env.REGISTRY }}
27-
uses: docker/login-action@v1
27+
uses: docker/login-action@v2
2828
with:
2929
registry: ${{ env.REGISTRY }}
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

3333
- name: Extract Docker metadata
3434
id: meta
35-
uses: docker/metadata-action@v3
35+
uses: docker/metadata-action@v4
3636
with:
3737
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3838

3939
- name: Build and push Docker image
40-
uses: docker/build-push-action@v2
40+
uses: docker/build-push-action@v3
4141
with:
4242
push: ${{ github.event_name != 'pull_request' }}
4343
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)