From aeb87f2570e8795506683fc46d660adf40a79e49 Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Tue, 19 May 2026 09:27:21 +0000 Subject: [PATCH 1/2] ci: disable cache in publish workflow --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d1d328..bcd3430 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: + package-manager-cache: false node-version-file: package.json registry-url: "https://registry.npmjs.org" @@ -70,6 +71,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: + package-manager-cache: false node-version: 22 registry-url: "https://registry.npmjs.org" From 766a04d0354a0f2b90aa97eef1fad3cf2ea4d875 Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Tue, 19 May 2026 09:40:34 +0000 Subject: [PATCH 2/2] ci: pin publish workflow actions --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bcd3430..f5bd24a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: persist-credentials: false - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 with: package-manager-cache: false node-version-file: package.json @@ -64,12 +64,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: persist-credentials: false - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 with: package-manager-cache: false node-version: 22