Skip to content

Commit b97d94b

Browse files
committed
Update generated workflow files
1 parent 415b14c commit b97d94b

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

files/.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,13 @@ jobs:
1818
timeout-minutes: 10
1919

2020
steps:
21-
- uses: actions/checkout@v3<% if (pnpm) { %>
21+
- uses: actions/checkout@v6<% if (pnpm) { %>
2222
- uses: pnpm/action-setup@v4
2323
with:
2424
version: 10<% } %>
2525
- name: Install Node
26-
uses: actions/setup-node@v3
26+
uses: actions/setup-node@v6
2727
with:
28-
node-version: 18
2928
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
3029
- name: Install Dependencies
3130
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>
@@ -38,14 +37,13 @@ jobs:
3837
timeout-minutes: 10
3938

4039
steps:
41-
- uses: actions/checkout@v3<% if (pnpm) { %>
40+
- uses: actions/checkout@v6<% if (pnpm) { %>
4241
- uses: pnpm/action-setup@v4
4342
with:
4443
version: 10<% } %>
4544
- name: Install Node
46-
uses: actions/setup-node@v3
45+
uses: actions/setup-node@v6
4746
with:
48-
node-version: 18
4947
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
5048
- name: Install Dependencies
5149
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>

0 commit comments

Comments
 (0)