Skip to content

Commit 946b6f8

Browse files
authored
fix(ci): use Node.js 24-compatible actions (#1)
1 parent fcb8bc2 commit 946b6f8

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/action-smoke-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
consumer-smoke-test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v7
1616
with:
1717
fetch-depth: 0
1818

@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Run the released action
3333
id: review
34-
uses: chrismcdev/PeakRDL-check/action@v0.1.0
34+
uses: chrismcdev/PeakRDL-check/action@v0.1.1
3535
with:
3636
base-ref: ${{ steps.fixture.outputs.base-ref }}
3737
head-ref: ${{ steps.fixture.outputs.head-ref }}

.github/workflows/register-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
peakrdl-check:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v7
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: chrismcdev/PeakRDL-check/action@v0.1.0
19+
- uses: chrismcdev/PeakRDL-check/action@v0.1.1
2020
with:
2121
base-ref: ${{ github.event.pull_request.base.sha }}
2222
head-ref: ${{ github.event.pull_request.head.sha }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ hosted runner.
1414
Markdown reports.
1515
- Pull requests that change SystemRDL files receive the normal review gate.
1616

17-
The smoke test uses the immutable `v0.1.0` release so a passing run proves
17+
The smoke test uses the immutable `v0.1.1` release so a passing run proves
1818
that exact published version works for consumers.
1919

2020
## Use the action
2121

2222
```yaml
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v7
2424
with:
2525
fetch-depth: 0
2626

27-
- uses: chrismcdev/PeakRDL-check/action@v0.1.0
27+
- uses: chrismcdev/PeakRDL-check/action@v0.1.1
2828
with:
2929
base-ref: ${{ github.event.pull_request.base.sha }}
3030
head-ref: ${{ github.event.pull_request.head.sha }}

0 commit comments

Comments
 (0)