From fd1e16a64a446e1303665300d032d76b45c6f946 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Jan 2024 21:52:01 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/ci.yaml | 2 +- .github/workflows/debug-windows.yaml | 2 +- .github/workflows/mutation-testing.yaml | 2 +- .github/workflows/release.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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') }}