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