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
@@ -36,7 +36,7 @@ jobs:
36
36
os: [ubuntu-latest]
37
37
steps:
38
38
- uses: actions/checkout@v4
39
-
- uses: actions/setup-node@v3
39
+
- uses: actions/setup-node@v4
40
40
with:
41
41
node-version: ${{ matrix.node }}
42
42
- name: install pnpm
@@ -45,7 +45,7 @@ jobs:
45
45
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)
46
46
echo installing pnpm version $PNPM_VER
47
47
npm i -g pnpm@$PNPM_VER
48
-
- uses: actions/setup-node@v3
48
+
- uses: actions/setup-node@v4
49
49
with:
50
50
node-version: ${{ matrix.node }}
51
51
cache: 'pnpm'
@@ -83,7 +83,7 @@ jobs:
83
83
os: ubuntu-latest
84
84
steps:
85
85
- uses: actions/checkout@v4
86
-
- uses: actions/setup-node@v3
86
+
- uses: actions/setup-node@v4
87
87
with:
88
88
node-version: ${{ matrix.node }}
89
89
- name: install pnpm
@@ -92,7 +92,7 @@ jobs:
92
92
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@v3
30
+
- uses: actions/setup-node@v4
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