From a7f78f61d042ae4c7bd78aa35ef88d8fb4e8d7a1 Mon Sep 17 00:00:00 2001 From: Stackie Jia Date: Mon, 3 Aug 2026 17:40:03 +0800 Subject: [PATCH 1/3] ci(actions): upgrade to Node.js 24 runtimes --- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 826d7f1..5bc51ea 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,10 +8,10 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v7 with: python-version: "3.13" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7033ff6..4c29827 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,9 +10,9 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: "3.13" From 3536d21322db4897732c2ce1dd2305efee28dbd2 Mon Sep 17 00:00:00 2001 From: Stackie Jia Date: Mon, 3 Aug 2026 17:41:50 +0800 Subject: [PATCH 2/3] ci(codecov): replace deprecated test results action --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c29827..c1c9636 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,9 +27,10 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/test-results-action@v1 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} + report_type: test_results - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 From 9d6e67e0fed2c35a4ec13526be7d12759ec9dce9 Mon Sep 17 00:00:00 2001 From: Stackie Jia Date: Mon, 3 Aug 2026 17:43:32 +0800 Subject: [PATCH 3/3] ci(codecov): upgrade action to Node.js 24 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1c9636..6d076dc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,12 +27,12 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} report_type: test_results - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }}