From d1b86c7df39a649cf5d152c18957f4db2ce92705 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 04:20:25 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-tests.yml | 12 ++++++------ .github/workflows/performance-report.yml | 8 ++++---- .github/workflows/repl-artefacts.yml | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-and-tests.yml b/.github/workflows/build-and-tests.yml index 279b84b35..3ce49ba8a 100644 --- a/.github/workflows/build-and-tests.yml +++ b/.github/workflows/build-and-tests.yml @@ -38,7 +38,7 @@ jobs: node-version: 20 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -217,7 +217,7 @@ jobs: toolchain: stable targets: ${{ matrix.settings.target }} - name: Cache cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -237,7 +237,7 @@ jobs: shell: bash - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -313,7 +313,7 @@ jobs: uses: actions/checkout@v5 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -407,7 +407,7 @@ jobs: check-latest: true - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -461,7 +461,7 @@ jobs: check-latest: true - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/performance-report.yml b/.github/workflows/performance-report.yml index 1e1b1b535..260cbeb92 100644 --- a/.github/workflows/performance-report.yml +++ b/.github/workflows/performance-report.yml @@ -38,7 +38,7 @@ jobs: toolchain: stable targets: x86_64-unknown-linux-gnu - name: Cache cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -54,7 +54,7 @@ jobs: node-version: 18 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} @@ -87,7 +87,7 @@ jobs: toolchain: stable targets: x86_64-unknown-linux-gnu - name: Cache cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -103,7 +103,7 @@ jobs: node-version: 18 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/repl-artefacts.yml b/.github/workflows/repl-artefacts.yml index 3fa5f6857..48d97c585 100644 --- a/.github/workflows/repl-artefacts.yml +++ b/.github/workflows/repl-artefacts.yml @@ -33,7 +33,7 @@ jobs: toolchain: stable targets: wasm32-unknown-unknown - name: Cache cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry/index/ @@ -49,7 +49,7 @@ jobs: node-version: 18 - name: Cache Node Modules id: cache-node-modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: node_modules key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}