From 4b0fb2a2719898de13cbc3713c95721d201901fb Mon Sep 17 00:00:00 2001 From: Cody Tseng <64680921+CodyTseng@users.noreply.github.com> Date: Sun, 26 May 2024 18:01:02 +0800 Subject: [PATCH] chore: update github actions (#23) --- .github/workflows/ci.yml | 6 +++--- .github/workflows/typedoc.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd45db9e..0f2077ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: NODE_VERSION: ${{ matrix.node-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -41,7 +41,7 @@ jobs: run: npm run test - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} env_vars: NODE_VERSION diff --git a/.github/workflows/typedoc.yml b/.github/workflows/typedoc.yml index 83b9f548..2b3d24bd 100644 --- a/.github/workflows/typedoc.yml +++ b/.github/workflows/typedoc.yml @@ -14,13 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 - name: Retrieve the cached "node_modules" directory (if present) - uses: actions/cache@v2 + uses: actions/cache@v4 id: node-cache with: path: node_modules