Skip to content

Commit bd32afa

Browse files
ci: use node 24 and update action versions (#20)
1 parent 878e873 commit bd32afa

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/actions/setup-tools/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ runs:
55
using: 'composite'
66
steps:
77
- name: Install Node.js
8-
uses: actions/setup-node@v4
8+
uses: actions/setup-node@v7
99
with:
10-
node-version: 25
10+
node-version: 24
1111
- name: Install dependencies root
1212
shell: bash
1313
run: npm ci

.github/workflows/release_plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: 'ubuntu-latest'
2020
timeout-minutes: 20
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v7
2323
with:
2424
fetch-depth: 0
2525
token: ${{ secrets.RELEASE_TOKEN_GITHUB }}

.github/workflows/reusable_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: 'ubuntu-latest'
1212
timeout-minutes: 10
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
with:
1616
fetch-depth: 0
1717
token: ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: 'ubuntu-latest'
4040
timeout-minutes: 10
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v7
4343
with:
4444
fetch-depth: 0
4545
token: ${{ secrets.THE_GH_RELEASE_TOKEN || github.token }}

.github/workflows/validate_pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check PR title for conventional commits
12-
uses: actions/github-script@v6
12+
uses: actions/github-script@v9
1313
with:
1414
github-token: ${{ github.token }}
1515
script: |

0 commit comments

Comments
 (0)