From bacc5ed3e46132464991f24eb4efa438c1228fba Mon Sep 17 00:00:00 2001 From: Pat Allan Date: Tue, 7 Nov 2023 19:49:20 +1100 Subject: [PATCH] build: update CI for Node v20 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea784f..4a7379a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up ruby uses: ruby/setup-ruby@v1 with: @@ -29,9 +29,11 @@ jobs: - name: Set up node uses: actions/setup-node@v3 with: - node-version: 16.18.1 + node-version: 20 cache: "yarn" - name: Install Yarn dependencies + env: + NODE_OPTIONS: "--openssl-legacy-provider" run: | yarn install bundle exec rails webpacker:compile