From 2b66bcff921568f22d80ce9e6824444b49b13ee3 Mon Sep 17 00:00:00 2001 From: Eli Polonsky Date: Thu, 13 Jul 2023 13:58:29 +0300 Subject: [PATCH] chore: use node 16 in upgrade workflows (#4177) 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 --- .github/workflows/yarn-upgrade.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/yarn-upgrade.yml b/.github/workflows/yarn-upgrade.yml index 2c32186f33..77f50884b0 100644 --- a/.github/workflows/yarn-upgrade.yml +++ b/.github/workflows/yarn-upgrade.yml @@ -21,7 +21,7 @@ jobs: uses: actions/setup-node@v3 with: cache: yarn - node-version: 14 + node-version: 16 - name: Install Tools run: |-