Skip to content

Commit

Permalink
chore: use node 16 in upgrade workflows (#4177)
Browse files Browse the repository at this point in the history
Our dependencies are starting to [reject](https://github.com/aws/jsii/actions/runs/5532321392/jobs/10105940432) node 14.

```console
yarn install v1.22.19
[1/4] Resolving packages...
[2/4] Fetching packages...
error @typescript-eslint/eslint-plugin@[6](https://github.com/aws/jsii/actions/runs/5532321392/jobs/10105940432#step:8:7).0.0: The engine "node" is incompatible with this module. Expected version "^16.0.0 || >=18.0.0". Got "14.21.3"
```


---

By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license].

[Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
  • Loading branch information
iliapolo authored Jul 13, 2023
1 parent f78ba7e commit 2b66bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/yarn-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 14
node-version: 16

- name: Install Tools
run: |-
Expand Down

0 comments on commit 2b66bcf

Please sign in to comment.