Skip to content

Commit da3f082

Browse files
Merge pull request #145 from ember-cli/nvp/update-generated-workflow
Update generated workflow files
2 parents 76dd59d + 731aa8e commit da3f082

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

files/.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ 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
28+
node-version: 22
2929
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
3030
- name: Install Dependencies
3131
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>
@@ -38,14 +38,14 @@ jobs:
3838
timeout-minutes: 10
3939

4040
steps:
41-
- uses: actions/checkout@v3<% if (pnpm) { %>
41+
- uses: actions/checkout@v6<% if (pnpm) { %>
4242
- uses: pnpm/action-setup@v4
4343
with:
4444
version: 10<% } %>
4545
- name: Install Node
46-
uses: actions/setup-node@v3
46+
uses: actions/setup-node@v6
4747
with:
48-
node-version: 18
48+
node-version: 22
4949
cache: <%= pnpm ? 'pnpm' : yarn ? 'yarn' : 'npm' %>
5050
- name: Install Dependencies
5151
run: <%= pnpm ? 'pnpm install --frozen-lockfile' : yarn ? 'yarn install --frozen-lockfile' : 'npm ci' %>

0 commit comments

Comments
 (0)