Skip to content

Commit ee05ec6

Browse files
committed
ci(workflows): update GH actions workflows to run on node 22.x instead of 20.x and 22.x matrix
1 parent 7192be1 commit ee05ec6

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/production-deploy.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,12 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111

12-
strategy:
13-
matrix:
14-
node-version: [20.x, 22.x]
15-
1612
steps:
1713
- uses: actions/checkout@v4
18-
- name: Use Node.js ${{ matrix.node-version }}
14+
- name: Use Node.js 22.x
1915
uses: actions/setup-node@v4
2016
with:
21-
node-version: ${{ matrix.node-version }}
17+
node-version: '22.x'
2218
cache: 'npm'
2319

2420
# Node dependencies clean install

.github/workflows/versioning.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,12 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414

15-
strategy:
16-
matrix:
17-
node-version: [20.x, 22.x]
18-
1915
steps:
2016
- uses: actions/checkout@v4
21-
- name: Use Node.js ${{ matrix.node-version }}
17+
- name: Use Node.js 22.x
2218
uses: actions/setup-node@v4
2319
with:
24-
node-version: ${{ matrix.node-version }}
20+
node-version: '22.x'
2521
cache: 'npm'
2622
- run: npm ci
2723
- run: npm run semantic-release

0 commit comments

Comments
 (0)