Skip to content

Commit

Permalink
bump to node 18 for github actions workflow
Browse files Browse the repository at this point in the history
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"
```
  • Loading branch information
anjannath committed Oct 10, 2023
1 parent a39b0ae commit caccc05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Get yarn cache directory path
id: yarn-cache-dir-path
Expand Down

0 comments on commit caccc05

Please sign in to comment.