Skip to content

Commit 96c4274

Browse files
committed
fix: update workflows
1 parent 6607806 commit 96c4274

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build-and-publish-jsr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [22.x]
15+
node-version: [24.x]
1616

1717
permissions:
1818
contents: read

.github/workflows/build-and-publish-npm.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
node-version: [22.x]
20+
node-version: [24.x]
2121

2222
permissions:
2323
contents: write # For pushing Git tags and creating releases
24-
pull-requests: write # For creating the changesets relese PR
25-
id-token: write # The OIDC ID token is used for authentication with JSR
24+
pull-requests: write # For creating the changesets release PR
25+
id-token: write # The OIDC ID token is used for authentication with NPM and JSR
2626

2727
env:
2828
CI: "true"
@@ -38,6 +38,7 @@ jobs:
3838
uses: actions/setup-node@v4
3939
with:
4040
node-version: ${{ matrix.node-version }}
41+
registry-url: "https://registry.npmjs.org"
4142

4243
- name: Setup pnpm
4344
uses: pnpm/action-setup@v4

.github/workflows/lint-and-test-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
node-version: [22.x]
18+
node-version: [24.x]
1919

2020
env:
2121
CI: "true"

0 commit comments

Comments
 (0)