From da78776ce078ec9a516cd6b52036a3c7d81acf28 Mon Sep 17 00:00:00 2001 From: Alan Lu Date: Mon, 4 Mar 2024 07:42:36 +0800 Subject: [PATCH] ci: update actions/checkout (#3) --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6adcb5f..190d929 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: timeout-minutes: 20 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: 20 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 521b3d6..a0371eb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: name: Node v${{matrix.node}} ((${{matrix.platform}})) runs-on: ${{matrix.platform}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: node-version: ${{matrix.node}} @@ -22,11 +22,3 @@ jobs: run: npx turbo lint - name: run tests run: npx turbo test - - name: coverage - uses: codecov/codecov-action@v3 - with: - fail_ci_if_error: true - verbose: false - token: ${{ secrets.CODECOV_TOKEN }} - env: - CI: true