From b435151a405fa79403e184de9d023c48ac7ea0c8 Mon Sep 17 00:00:00 2001 From: Matthew Linkous Date: Sun, 26 May 2024 10:42:17 -0500 Subject: [PATCH] Update Github actions to use Node 20 --- .github/workflows/build-db.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/test.js.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-db.yml b/.github/workflows/build-db.yml index fac16a75..61fc6760 100644 --- a/.github/workflows/build-db.yml +++ b/.github/workflows/build-db.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [16.x, 18.x, 20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 05a101da..70725a7d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 20.x cache: 'yarn' - name: Setup .yarnrc.yml diff --git a/.github/workflows/test.js.yml b/.github/workflows/test.js.yml index 95407fac..4134c086 100644 --- a/.github/workflows/test.js.yml +++ b/.github/workflows/test.js.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 20.x cache: 'yarn' - run: yarn install --immutable