From bc98808afb3bc0ad544faaa0663fae99cd1412b2 Mon Sep 17 00:00:00 2001 From: Steve Worley Date: Tue, 27 Jan 2026 20:15:54 +1000 Subject: [PATCH] fix: Update the node-version for oidc --- .github/workflows/compile.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index e263a8c..37619b9 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -17,8 +17,8 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - registry-url: 'https://registry.npmjs.org/' - node-version: '20' + node-version: '24' + registry-url: 'https://registry.npmjs.org' - name: Install dependencies run: npm ci diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 51e9dff..1d03f87 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - node-version: [18.x, 20.x] + node-version: [20.x, 24.x] steps: - uses: actions/checkout@v4