From 2fe3b935159203bd694e6e3a4558ce16eae814bc Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Tue, 19 May 2026 09:33:09 +0000 Subject: [PATCH 1/3] 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 b218963..923547a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,6 +29,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" @@ -72,6 +73,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 4888cfd979702e3bd82301840478f2585b5a9be7 Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Tue, 19 May 2026 09:40:29 +0000 Subject: [PATCH 2/3] 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 923547a..3205f32 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,14 +20,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: persist-credentials: false # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 with: package-manager-cache: false node-version: 22 @@ -66,12 +66,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 From 898796a07effee54f8f2d862bb4d1be9005decaa Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Tue, 19 May 2026 09:46:59 +0000 Subject: [PATCH 3/3] ci: add codeowners for GitHub config --- .github/CODEOWNERS | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..fabf333 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +# Request review for GitHub configuration changes. +.github/ @JoviDeCroock