Skip to content

Commit a4b1958

Browse files
committed
chore: Raise node version in workflows to 20
1 parent e9a4101 commit a4b1958

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
id: buildx
3636
if: ${{ github.event_name == 'pull_request' }}
3737
uses: docker/setup-buildx-action@v3
38-
- name: Use Node.js 18.x
38+
- name: Use Node.js 20.x
3939
uses: actions/setup-node@v6
4040
with:
41-
node-version: '18.x'
41+
node-version: '20.x'
4242

4343
- name: Test application with npm
4444
timeout-minutes: 45

.github/workflows/release-project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
with:
4040
username: ${{ secrets.DOCKER_HUB_USERNAME }}
4141
password: ${{ secrets.DOCKER_HUB_TOKEN }}
42-
- name: Use Node.js 18.x
42+
- name: Use Node.js 20.x
4343
uses: actions/setup-node@v6
4444
with:
45-
node-version: '18.x'
45+
node-version: '20.x'
4646

4747
- name: Build application with npm
4848
run: |

.github/workflows/test-and-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
with:
1111
submodules: 'true'
1212

13-
- name: Use Node.js 18.x
13+
- name: Use Node.js 20.x
1414
uses: actions/setup-node@v6
1515
with:
16-
node-version: "18.x"
16+
node-version: "20.x"
1717

1818
- name: Install and Test OpenSCD
1919
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
with:
1616
submodules: 'true'
1717

18-
- name: Use Node.js 18.x
18+
- name: Use Node.js 20.x
1919
uses: actions/setup-node@v6
2020
with:
21-
node-version: "18.x"
21+
node-version: "20.x"
2222

2323
- name: Install and Test
2424
run: |

0 commit comments

Comments
 (0)