From ee78a266aa54a06dff0293afd33d0e713b70bb15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:42:00 +0000 Subject: [PATCH 1/2] chore: bump codecov/codecov-action from 4 to 5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e8d7826684d..aa5da45dd3c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: run: deno task cov:gen - name: Upload coverage - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: From b5b2df9de67a4ddb0c696b0de2762b4119e41de0 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Tue, 19 Nov 2024 13:41:34 +0900 Subject: [PATCH 2/2] ignore codecov related files --- .gitignore | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 420de2d43829..02be11f2662b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,21 @@ -.DS_Store -.idea -.vim -**/cov/ -crypto/_wasm/target deno.lock -cli/testdata/unicode_width_crate/target -html_cov/ -cov.lcov http/testdata/%25A.txt http/testdata/file#2.txt http/testdata/test file.txt -coverage/ docs/ + +# rust build output +crypto/_wasm/target +cli/testdata/unicode_width_crate/target + +# coverage +coverage/ +cov.lcov +codecov +codecov.SHA256SUM +codecov.SHA256SUM.sig + +# misc files +.DS_Store +.idea +.vim