From f335838c14a8750848646d28a7df61d63905a8c4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 6 Sep 2025 22:30:04 +0000 Subject: [PATCH 1/2] chore: update actions/setup-node action to v5 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d72c72b3..4fb4253a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v5 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} @@ -71,7 +71,7 @@ jobs: uses: actions/checkout@v5 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22.19.0 From 5714e2e30f12f88647ccdcc92b750959b1dd08d9 Mon Sep 17 00:00:00 2001 From: notaphplover Date: Sun, 14 Sep 2025 19:31:16 +0200 Subject: [PATCH 2/2] chore: disable setup node cache --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ceb09903..c789fdae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,6 +30,7 @@ jobs: uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} + package-manager-cache: false - uses: pnpm/action-setup@v3 name: Install pnpm