From 9bf87caf2b14d4ab14f31e4cac0bcf2474815ff5 Mon Sep 17 00:00:00 2001 From: Courtney Sims Date: Tue, 12 Nov 2024 13:17:08 -0600 Subject: [PATCH] Pin node version --- .github/workflows/deploy.yml | 3 ++- .github/workflows/release.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a68b5a9..06dc178 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,7 +14,8 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: "latest" + # Pinned due to compatibility issues on 23.2.0 + node-version: "22" cache: "npm" - name: Install modules and build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30009a2..82054bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,8 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: "latest" + # Pinned due to compatibility issues on 23.2.0 + node-version: "22" cache: "npm" - name: Install modules