Skip to content

Commit 1f395f5

Browse files
feat: bump CI version of Node to 20 (#1233)
## PR Checklist - [x] Addresses an existing open issue: fixes #1204 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Swaps the number from 18 to 20. Straightforward.
1 parent 4a58d10 commit 1f395f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/prepare/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
- uses: actions/setup-node@v4
99
with:
1010
cache: pnpm
11-
node-version: "18"
11+
node-version: "20"
1212
- run: pnpm install --frozen-lockfile
1313
shell: bash
1414
using: composite

src/steps/writing/creation/dotGitHub/actions.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
cache: pnpm
21-
node-version: '18'
21+
node-version: '20'
2222
- run: pnpm install --frozen-lockfile
2323
shell: bash
2424
using: composite

src/steps/writing/creation/dotGitHub/actions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function createDotGitHubActions() {
1212
{ uses: "pnpm/action-setup@v2" },
1313
{
1414
uses: "actions/setup-node@v4",
15-
with: { cache: "pnpm", "node-version": "18" },
15+
with: { cache: "pnpm", "node-version": "20" },
1616
},
1717
{
1818
run: "pnpm install --frozen-lockfile",

0 commit comments

Comments
 (0)