Skip to content

Commit

Permalink
feat: bump CI version of Node to 20 (#1233)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
JoshuaKGoldberg committed Jan 12, 2024
1 parent 4a58d10 commit 1f395f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: "18"
node-version: "20"
- run: pnpm install --frozen-lockfile
shell: bash
using: composite
2 changes: 1 addition & 1 deletion src/steps/writing/creation/dotGitHub/actions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: '18'
node-version: '20'
- run: pnpm install --frozen-lockfile
shell: bash
using: composite
Expand Down
2 changes: 1 addition & 1 deletion src/steps/writing/creation/dotGitHub/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function createDotGitHubActions() {
{ uses: "pnpm/action-setup@v2" },
{
uses: "actions/setup-node@v4",
with: { cache: "pnpm", "node-version": "18" },
with: { cache: "pnpm", "node-version": "20" },
},
{
run: "pnpm install --frozen-lockfile",
Expand Down

0 comments on commit 1f395f5

Please sign in to comment.