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@v5
36
+
- uses: actions/setup-node@v6
37
37
with:
38
38
node-version: ${{ matrix.node }}
39
39
package-manager-cache: false # pnpm is not installed yet
@@ -43,7 +43,7 @@ jobs:
43
43
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)
44
44
echo installing pnpm version $PNPM_VER
45
45
npm i -g pnpm@$PNPM_VER
46
-
- uses: actions/setup-node@v5
46
+
- uses: actions/setup-node@v6
47
47
with:
48
48
node-version: ${{ matrix.node }}
49
49
package-manager-cache: true # caches pnpm via packageManager field in package.json
@@ -102,7 +102,7 @@ jobs:
102
102
steps:
103
103
- uses: actions/checkout@v5
104
104
- uses: actions/checkout@v5
105
-
- uses: actions/setup-node@v5
105
+
- uses: actions/setup-node@v6
106
106
with:
107
107
node-version: ${{ matrix.node }}
108
108
package-manager-cache: false # pnpm is not installed yet
@@ -112,7 +112,7 @@ jobs:
112
112
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)
113
113
echo installing pnpm version $PNPM_VER
114
114
npm i -g pnpm@$PNPM_VER
115
-
- uses: actions/setup-node@v5
115
+
- uses: actions/setup-node@v6
116
116
with:
117
117
node-version: ${{ matrix.node }}
118
118
package-manager-cache: true # caches pnpm via packageManager field in 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@v5
30
+
- uses: actions/setup-node@v6
31
31
with:
32
32
node-version: ${{ matrix.node }}
33
33
package-manager-cache: false # pnpm is not installed yet
@@ -37,7 +37,7 @@ jobs:
37
37
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)
38
38
echo installing pnpm version $PNPM_VER
39
39
npm i -g pnpm@$PNPM_VER
40
-
- uses: actions/setup-node@v5
40
+
- uses: actions/setup-node@v6
41
41
with:
42
42
node-version: ${{ matrix.node }}
43
43
package-manager-cache: true # caches pnpm via packageManager field in package.json
0 commit comments