From 97eb6171dfb7c9755a4ce772b9c7e4a7ee2386f8 Mon Sep 17 00:00:00 2001 From: Yusaku Nishi Date: Sun, 3 May 2026 23:42:41 +0900 Subject: [PATCH 1/3] update: codecov/codecov-action to v6 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a67b1e..5ba331c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: > ${{ env.CODECOV_PATH }} - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: From 9b2ce2e0d419d5f59b7d69375f6df33c2c98d326 Mon Sep 17 00:00:00 2001 From: Yusaku Nishi Date: Sun, 3 May 2026 23:43:25 +0900 Subject: [PATCH 2/3] change: way to pass token --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5ba331c..fea5e4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,10 +39,9 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v6 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ${{ env.CODECOV_PATH }} + token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true From 6df51b1f7211c7b089612565b5ac5521e207bbfe Mon Sep 17 00:00:00 2001 From: Yusaku Nishi Date: Sun, 3 May 2026 23:43:40 +0900 Subject: [PATCH 3/3] chore: remove unnecessary whitespace --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fea5e4b..d79ceb0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Test -# Controls when the action will run. +# Controls when the action will run. on: pull_request: