You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ jobs:
33
33
os: [ubuntu-latest]
34
34
steps:
35
35
- uses: actions/checkout@v5
36
-
- uses: actions/setup-node@v4
36
+
- uses: actions/setup-node@v5
37
37
with:
38
38
node-version: ${{ matrix.node }}
39
39
- name: install pnpm
@@ -42,7 +42,7 @@ jobs:
42
42
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json)
43
43
echo installing pnpm version $PNPM_VER
44
44
npm i -g pnpm@$PNPM_VER
45
-
- uses: actions/setup-node@v4
45
+
- uses: actions/setup-node@v5
46
46
with:
47
47
node-version: ${{ matrix.node }}
48
48
cache: 'pnpm'
@@ -101,7 +101,7 @@ jobs:
101
101
svelte: 'current'
102
102
steps:
103
103
- uses: actions/checkout@v5
104
-
- uses: actions/setup-node@v4
104
+
- uses: actions/setup-node@v5
105
105
with:
106
106
node-version: ${{ matrix.node }}
107
107
- name: install pnpm
@@ -110,7 +110,7 @@ jobs:
110
110
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json)
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ jobs:
27
27
with:
28
28
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
29
29
fetch-depth: 0
30
-
- uses: actions/setup-node@v4
30
+
- uses: actions/setup-node@v5
31
31
with:
32
32
node-version: ${{ matrix.node }}
33
33
- name: install pnpm
@@ -36,7 +36,7 @@ jobs:
36
36
PNPM_VER=$(jq -r '.packageManager | if .[0:5] == "pnpm@" then .[5:] else "packageManager in package.json does not start with pnpm@\n" | halt_error(1) end' package.json)
0 commit comments