From 0c44ff6eded34f37c09b878532c1117721b7bfb0 Mon Sep 17 00:00:00 2001 From: Jared Evans Date: Wed, 22 Jul 2026 19:18:20 +0100 Subject: [PATCH] update to v5 --- .github/workflows/node.yml | 4 ++-- .github/workflows/npm-publish-beta.yml | 10 +++++----- .github/workflows/npm-publish.yml | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index d56b1a4..b464efb 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -19,9 +19,9 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} cache: "npm" diff --git a/.github/workflows/npm-publish-beta.yml b/.github/workflows/npm-publish-beta.yml index d90e996..8e47916 100644 --- a/.github/workflows/npm-publish-beta.yml +++ b/.github/workflows/npm-publish-beta.yml @@ -12,10 +12,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: - node-version: 20 + node-version: 24 - run: npm ci # - run: npm test @@ -23,8 +23,8 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: node-version: 20 registry-url: https://registry.npmjs.org/ diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 8939da6..9baf9e9 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -8,17 +8,17 @@ on: types: [created] permissions: - id-token: write # Required for OIDC + id-token: write # Required for OIDC contents: read jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: - node-version: 20 + node-version: 24 - run: npm ci # - run: npm test @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 registry-url: https://registry.npmjs.org/ - name: Update npm run: npm install -g npm@latest