Skip to content

Commit 78bfcb8

Browse files
authored
Merge pull request #6 from nomennescio/main
Update deprecated actions to Node.js 20 supported ones
2 parents f127c1f + c499ebc commit 78bfcb8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: docker/setup-buildx-action@v2
14+
- uses: docker/setup-buildx-action@v3
1515

1616
- name: Build image
17-
uses: docker/build-push-action@v3
17+
uses: docker/build-push-action@v5
1818
with:
1919
context: .
2020
push: false

.github/workflows/push-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
- uses: actions/checkout@v4
1919

2020
- name: Set up Docker Buildx
21-
uses: docker/setup-buildx-action@v2
21+
uses: docker/setup-buildx-action@v3
2222

2323
- name: Login to GitHub Container Registry
24-
uses: docker/login-action@v2
24+
uses: docker/login-action@v3
2525
with:
2626
registry: ghcr.io
2727
username: ${{ github.repository_owner }}
2828
password: ${{ secrets.GITHUB_TOKEN }}
2929

3030
- name: Build and push image
31-
uses: docker/build-push-action@v3
31+
uses: docker/build-push-action@v5
3232
with:
3333
context: .
3434
push: true

0 commit comments

Comments
 (0)