From 73497e076e3905e41b3d7a15012abb837b3d7169 Mon Sep 17 00:00:00 2001 From: Jonathan Norris Date: Fri, 14 Aug 2026 15:30:22 -0400 Subject: [PATCH] fix: run workflows on Node 24 --- .github/workflows/benchmark.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 614aeb6..ae45d1f 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v7 with: - node-version: 22.14.x + node-version: 24.x - run: npm ci --legacy-peer-deps - run: npm run asbuild # Run benchmark with `go test -bench` and stores the output to a file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8d2146..572363f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v7 with: - node-version: 22.14.x + node-version: 24.x - name: Install dependencies run: npm ci --legacy-peer-deps - name: Run tests diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 922b2e6..2dafc58 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - node-version: [22.14.x] + node-version: [24.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: