diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c3d1f801..f3fb2673 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,7 +29,7 @@ jobs: run: echo "version=$(node -v)" >> $GITHUB_OUTPUT id: node-version - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/debug-windows.yaml b/.github/workflows/debug-windows.yaml index 859d2b70..6ffeeabc 100644 --- a/.github/workflows/debug-windows.yaml +++ b/.github/workflows/debug-windows.yaml @@ -25,7 +25,7 @@ jobs: run: echo "::set-output name=version::$(node -v)" id: node-version - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/mutation-testing.yaml b/.github/workflows/mutation-testing.yaml index 9f8c1e23..fceed27c 100644 --- a/.github/workflows/mutation-testing.yaml +++ b/.github/workflows/mutation-testing.yaml @@ -24,7 +24,7 @@ jobs: run: echo "::set-output name=version::$(node -v)" id: node-version - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 16d2eff4..bb850731 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,7 +25,7 @@ jobs: run: echo "::set-output name=version::$(node -v)" id: node-version - name: Cache node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ steps.node-version.outputs.version }}-${{ hashFiles('**/yarn.lock') }}