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/release.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ jobs:
29
29
with:
30
30
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
31
31
fetch-depth: 0
32
-
- uses: actions/setup-node@v5
32
+
- uses: actions/setup-node@v6
33
33
with:
34
34
node-version: ${{ matrix.node }}
35
35
package-manager-cache: false # pnpm is not installed yet
@@ -39,7 +39,7 @@ jobs:
39
39
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)
40
40
echo installing pnpm version $PNPM_VER
41
41
npm i -g pnpm@$PNPM_VER
42
-
- uses: actions/setup-node@v5
42
+
- uses: actions/setup-node@v6
43
43
with:
44
44
node-version: ${{ matrix.node }}
45
45
package-manager-cache: true # caches pnpm via packageManager field in package.json
0 commit comments