diff --git a/.github/actions/check/action.yml b/.github/actions/check/action.yml index a242936..0c3646d 100644 --- a/.github/actions/check/action.yml +++ b/.github/actions/check/action.yml @@ -21,6 +21,6 @@ runs: run: pnpm test:coverage - name: ✅ Coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: file: ./coverage/coverage-final.json diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index c248f19..2231b3d 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -31,7 +31,7 @@ runs: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT - name: 🏗 Setup Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} key: ${{ runner.os }}-${{ inputs.node-version }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f66bf9..6e53c0e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: fetch-depth: 0 - name: 🚨 Commitlint - uses: wagoid/commitlint-github-action@v5 + uses: wagoid/commitlint-github-action@v6 with: configFile: .commitlintrc.yml @@ -46,7 +46,6 @@ jobs: uses: actions/checkout@v4 - name: 🚨 Spellcheck - uses: streetsidesoftware/cspell-action@v2 + uses: streetsidesoftware/cspell-action@v6 with: - github_token: ${{ secrets.GITHUB_TOKEN}} inline: error