From fc32323d152533a6c2165a696ef665d1ded9bb52 Mon Sep 17 00:00:00 2001 From: "Mark S. Miller" Date: Mon, 19 Aug 2024 13:44:29 -0700 Subject: [PATCH] fix: depend on Node 18 rather than Node 12 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a9fe9bdfb..c7cab2fc75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -267,19 +267,19 @@ jobs: - name: 'build' run: yarn run build - # fails under Node v12 + # fails under Node v17 - run: corepack disable - - name: 'switch to node v12' + - name: 'switch to node v18' uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '18.x' - name: Echo node version run: node --version - name: Run test:platform-compatibility - # npm b/c Yarn 4 doesn't work in Node 12 + # npm b/c Yarn 4 doesn't work in Node 18 run: cd packages/ses && npm run test:platform-compatibility viable-release: