Skip to content

Commit e81568c

Browse files
authored
Merge pull request #190 from kiegroup/node24-1
Upgrade Node.js setup action and version
2 parents 5afff58 + 8f20ae9 commit e81568c

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Setup Node ${{ matrix.node-version }}
24-
uses: actions/setup-node@v4
24+
uses: actions/setup-node@v6
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: npm ci
28-
- run: npm test
28+
- run: npm test

.github/workflows/prepare-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
with:
2424
fetch-depth: 0
2525
- name: Setup Node
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v6
2727
with:
28-
node-version: 20
28+
node-version: 24
2929
- name: Git config
3030
run: |
3131
git config user.name "${GITHUB_ACTOR}"
@@ -47,4 +47,4 @@ jobs:
4747
Creating changes for the next release.
4848
branch: release/v${{ env.NEXT_VERSION }}
4949
commit-message: "chore: release v${{ env.NEXT_VERSION }}"
50-
reviewers: lampajr
50+
reviewers: lampajr

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
runs-on: ${{ matrix.os }}
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828
- name: Setup Node ${{ matrix.node-version }}
29-
uses: actions/setup-node@v4
29+
uses: actions/setup-node@v6
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232
- run: npm ci
33-
- run: npm test
33+
- run: npm test

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
name: Release package
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
- name: Setup Node
24-
uses: actions/setup-node@v4
24+
uses: actions/setup-node@v6
2525
with:
26-
node-version: 20
26+
node-version: 24
2727
- name: Git config
2828
run: |
2929
git config user.name "${GITHUB_ACTOR}"
@@ -34,4 +34,4 @@ jobs:
3434
# the version/changelog must be already updated on main branch using "npm run release:prepare"
3535
# or check prepare-release.yml workflow
3636
- name: New version release
37-
run: npm run release -- --ci --no-increment --no-git.commit ${{ github.event.inputs.options }}
37+
run: npm run release -- --ci --no-increment --no-git.commit ${{ github.event.inputs.options }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This is the easiest invocation where you let the tool set / compute most of the
6161

6262
### Requirements
6363

64-
* Node 16 or higher, more details on Node can be found [here](https://nodejs.org/en).
64+
* Node 18 or higher, more details on Node can be found [here](https://nodejs.org/en).
6565
* Git, see [how to install](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) if you need help.
6666

6767
### How it works?

0 commit comments

Comments
 (0)