Skip to content

Commit caccc05

Browse files
committed
bump to node 18 for github actions workflow
podman-desktop needs node 18, trying to build with node 16 shows the following error: ``` error [email protected]: The engine "node" is incompatible with this module. Expected version ">=18". Got "16.14.2" ```
1 parent a39b0ae commit caccc05

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pr-check.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- uses: actions/setup-node@v3
3333
with:
34-
node-version: 16
34+
node-version: 18
3535

3636
- name: Get yarn cache directory path
3737
id: yarn-cache-dir-path
@@ -64,7 +64,7 @@ jobs:
6464

6565
- uses: actions/setup-node@v3
6666
with:
67-
node-version: 16
67+
node-version: 18
6868

6969
- name: Get yarn cache directory path
7070
id: yarn-cache-dir-path
@@ -93,7 +93,7 @@ jobs:
9393
- uses: actions/checkout@v3
9494
- uses: actions/setup-node@v3
9595
with:
96-
node-version: 16
96+
node-version: 18
9797

9898
- name: Get yarn cache directory path
9999
id: yarn-cache-dir-path

0 commit comments

Comments
 (0)