Skip to content

Commit

Permalink
fix: reset codecov-action back to v3 (#1304)
Browse files Browse the repository at this point in the history
## 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`.
  • Loading branch information
JoshuaKGoldberg committed Feb 14, 2024
1 parent cf6b142 commit ec238bf
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/test-create.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
- run: pnpm run test:create
- if: always()
name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
files: coverage-create/lcov.info
flags: create
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-initialize.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
run: mv coverage coverage-initialize
- if: always()
name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
files: coverage-initialize/lcov.info
flags: initialize
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-migrate.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
run: mv coverage coverage-migrate
- if: always()
name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
files: coverage-migrate/lcov.info
flags: migrate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -6,7 +6,7 @@ jobs:
- uses: ./.github/actions/prepare
- run: pnpm run test --coverage
- name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
with:
flags: unit

Expand Down
2 changes: 1 addition & 1 deletion script/__snapshots__/migrate-test-e2e.js.snap
Expand Up @@ -53,7 +53,7 @@ exports[`expected file changes > .github/workflows/test.yml 1`] = `
@@ ... @@ jobs:
- run: pnpm run test --coverage
- name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
- with:
- flags: unit
Expand Down
Expand Up @@ -314,7 +314,7 @@ describe("createWorkflows", () => {
- uses: ./.github/actions/prepare
- run: pnpm run test --coverage
- name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v3
name: Test
Expand Down
2 changes: 1 addition & 1 deletion src/steps/writing/creation/dotGitHub/createWorkflows.ts
Expand Up @@ -218,7 +218,7 @@ export function createWorkflows(options: Options) {
{ run: "pnpm run test --coverage" },
{
name: "Codecov",
uses: "codecov/codecov-action@v4",
uses: "codecov/codecov-action@v3",
},
],
}),
Expand Down

0 comments on commit ec238bf

Please sign in to comment.