From 81442d53ab26bd50671408a846af99a914368c6a Mon Sep 17 00:00:00 2001 From: JJ-Cro Date: Fri, 17 Jul 2026 13:06:32 +0200 Subject: [PATCH] chore(v3.2.0): upgrade GitHub Actions to setup-node v7 and checkout v6 Co-authored-by: Cursor --- .github/workflows/e2etest.yml | 4 ++-- .github/workflows/npmpublish.yml | 6 +++--- .github/workflows/templates-readme.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2etest.yml b/.github/workflows/e2etest.yml index 9ebc360..dec3712 100644 --- a/.github/workflows/e2etest.yml +++ b/.github/workflows/e2etest.yml @@ -19,9 +19,9 @@ jobs: steps: - name: 'Checkout source code' - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' registry-url: 'https://registry.npmjs.org/' diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index d499544..d6c384c 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -18,18 +18,18 @@ jobs: IS_PRERELEASE: ${{ github.event.release.prerelease }} steps: - name: Checkout (no repo token persisted) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false ref: ${{ github.event.release.tag_name }} - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' registry-url: https://registry.npmjs.org/ - cache: 'npm' + package-manager-cache: false - name: Assert latest npm # run: npm i -g npm@latest # pin to v11 until npm v12 bug is fixed: https://github.com/npm/cli/issues/9722 diff --git a/.github/workflows/templates-readme.yml b/.github/workflows/templates-readme.yml index dfea309..8d81a0f 100644 --- a/.github/workflows/templates-readme.yml +++ b/.github/workflows/templates-readme.yml @@ -15,9 +15,9 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v7 with: node-version-file: '.nvmrc' registry-url: https://registry.npmjs.org/