Skip to content

Commit ec238bf

Browse files
fix: reset codecov-action back to v3 (#1304)
## PR Checklist - [x] Addresses an existing open issue: fixes #1303 - [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 codecov/codecov-action#1292 & codecov/feedback#273 make me not want to deal with this token stuff until it's all resolved. Things were working fine before, and I really don't want to add a _third_ token requirement to repos made with `create-typescript-app`.
1 parent cf6b142 commit ec238bf

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

.DS_Store

8 KB
Binary file not shown.

.github/workflows/test-create.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- run: pnpm run test:create
99
- if: always()
1010
name: Codecov
11-
uses: codecov/codecov-action@v4
11+
uses: codecov/codecov-action@v3
1212
with:
1313
files: coverage-create/lcov.info
1414
flags: create

.github/workflows/test-initialize.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: mv coverage coverage-initialize
1313
- if: always()
1414
name: Codecov
15-
uses: codecov/codecov-action@v4
15+
uses: codecov/codecov-action@v3
1616
with:
1717
files: coverage-initialize/lcov.info
1818
flags: initialize

.github/workflows/test-migrate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: mv coverage coverage-migrate
1313
- if: always()
1414
name: Codecov
15-
uses: codecov/codecov-action@v4
15+
uses: codecov/codecov-action@v3
1616
with:
1717
files: coverage-migrate/lcov.info
1818
flags: migrate

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- uses: ./.github/actions/prepare
77
- run: pnpm run test --coverage
88
- name: Codecov
9-
uses: codecov/codecov-action@v4
9+
uses: codecov/codecov-action@v3
1010
with:
1111
flags: unit
1212

script/__snapshots__/migrate-test-e2e.js.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ exports[`expected file changes > .github/workflows/test.yml 1`] = `
5353
@@ ... @@ jobs:
5454
- run: pnpm run test --coverage
5555
- name: Codecov
56-
uses: codecov/codecov-action@v4
56+
uses: codecov/codecov-action@v3
5757
- with:
5858
- flags: unit
5959

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ describe("createWorkflows", () => {
314314
- uses: ./.github/actions/prepare
315315
- run: pnpm run test --coverage
316316
- name: Codecov
317-
uses: codecov/codecov-action@v4
317+
uses: codecov/codecov-action@v3
318318
319319
name: Test
320320

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export function createWorkflows(options: Options) {
218218
{ run: "pnpm run test --coverage" },
219219
{
220220
name: "Codecov",
221-
uses: "codecov/codecov-action@v4",
221+
uses: "codecov/codecov-action@v3",
222222
},
223223
],
224224
}),

0 commit comments

Comments
 (0)