Skip to content

Commit dfd4e72

Browse files
committed
upgrade GitHub actions to support Node 24
1 parent 2889dbb commit dfd4e72

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Unit Tests
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
- name: Run tests
1313
run: docker compose -f action-services.yml run test
1414

@@ -18,18 +18,18 @@ jobs:
1818
if: startsWith(github.ref, 'refs/tags')
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

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

3030
- name: Extract metadata (tags, labels) for Docker
3131
id: meta
32-
uses: docker/metadata-action@v5
32+
uses: docker/metadata-action@v6
3333
with:
3434
images: |
3535
ghcr.io/${{ github.repository_owner }}/traefik-https-proxy
@@ -41,7 +41,7 @@ jobs:
4141
type=semver,pattern={{major}}
4242
4343
- name: Build and push Docker image
44-
uses: docker/build-push-action@v5
44+
uses: docker/build-push-action@v7
4545
with:
4646
context: .
4747
push: true

0 commit comments

Comments
 (0)