Skip to content

Commit 9431f86

Browse files
authored
fix: upgrade pnpm/action-setup to v4 (#1620)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #1619 - [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 <!-- Description of what is changed and how the code change does that. --> This PR upgrades the `pnpm/action-setup@v2` to `pnpm/action-setup@v4` which should resolve the warning. From the looks of the releases page, 3 would work as well: https://github.com/pnpm/action-setup/releases
1 parent 0ff914c commit 9431f86

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
@@ -4,7 +4,7 @@ name: Prepare
44

55
runs:
66
steps:
7-
- uses: pnpm/action-setup@v2
7+
- uses: pnpm/action-setup@v4
88
with:
99
version: 9
1010
- uses: actions/setup-node@v4

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ name: Prepare
1414
1515
runs:
1616
steps:
17-
- uses: pnpm/action-setup@v2
17+
- uses: pnpm/action-setup@v4
1818
with:
1919
version: 9
2020
- uses: actions/setup-node@v4

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function createDotGitHubActions() {
1010
runs: {
1111
steps: [
1212
{
13-
uses: "pnpm/action-setup@v2",
13+
uses: "pnpm/action-setup@v4",
1414
with: { version: 9 },
1515
},
1616
{

0 commit comments

Comments
 (0)