Skip to content

Commit c63b465

Browse files
chore: correct snapshots around versions
1 parent 92454e5 commit c63b465

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ describe("createWorkflows", () => {
121121
- uses: ./.github/actions/prepare
122122
- env:
123123
GITHUB_TOKEN: \${{ secrets.ACCESS_TOKEN }}
124-
uses: JoshuaKGoldberg/[email protected].2
124+
uses: JoshuaKGoldberg/[email protected].3
125125
126126
name: Contributors
127127

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export function createWorkflows(options: Options) {
8484
{ uses: "./.github/actions/prepare" },
8585
{
8686
env: { GITHUB_TOKEN: "${{ secrets.ACCESS_TOKEN }}" },
87-
uses: `JoshuaKGoldberg/[email protected].2`,
87+
uses: `JoshuaKGoldberg/[email protected].3`,
8888
},
8989
],
9090
}),

src/steps/writing/creation/rootFiles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function createRootFiles(options: Options) {
3636
},
3737
}),
3838
}),
39-
".nvmrc": `20.10.0\n`,
39+
".nvmrc": `20.11.0\n`,
4040
".prettierignore": formatIgnoreFile([
4141
...(options.excludeAllContributors ? [] : [".all-contributorsrc"]),
4242
...(options.excludeTests ? [] : ["coverage/"]),

0 commit comments

Comments
 (0)