From 5d67c795d7498581c5e48f35111d81c46206103d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 20:47:16 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/jetbrains-release.yaml | 10 +++++----- .github/workflows/main.yaml | 6 +++--- .github/workflows/pr_checks.yaml | 2 +- .github/workflows/preview.yaml | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/jetbrains-release.yaml b/.github/workflows/jetbrains-release.yaml index b8c473604fe..1d69cdf2920 100644 --- a/.github/workflows/jetbrains-release.yaml +++ b/.github/workflows/jetbrains-release.yaml @@ -98,19 +98,19 @@ jobs: node-version-file: ".nvmrc" - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache binary node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: binary/node_modules key: ${{ runner.os }}-node-${{ hashFiles('binary/package-lock.json') }} - name: Cache gui node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gui/node_modules key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }} @@ -284,13 +284,13 @@ jobs: node-version-file: ".nvmrc" - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache binary node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: binary/node_modules key: ${{ runner.os }}-node-${{ hashFiles('binary/package-lock.json') }} diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ae0359027d5..a134f69bb05 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -80,19 +80,19 @@ jobs: node-version-file: ".nvmrc" - name: Cache extension node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: extensions/vscode/node_modules key: ${{ runner.os }}-node-${{ hashFiles('extensions/vscode/package-lock.json') }} - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache gui node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gui/node_modules key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }} diff --git a/.github/workflows/pr_checks.yaml b/.github/workflows/pr_checks.yaml index e5f44c03e3c..0eb09c5a10d 100644 --- a/.github/workflows/pr_checks.yaml +++ b/.github/workflows/pr_checks.yaml @@ -284,7 +284,7 @@ jobs: - uses: actions/checkout@v4 - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: extensions/vscode/node_modules key: ${{ runner.os }}-vscode-node-modules-${{ hashFiles('extensions/vscode/package-lock.json') }} diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml index bd5f4b7acb1..1b6c87a7c2f 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -75,19 +75,19 @@ jobs: node-version-file: ".nvmrc" - name: Cache extension node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: extensions/vscode/node_modules key: ${{ runner.os }}-node-${{ hashFiles('extensions/vscode/package-lock.json') }} - name: Cache core node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: core/node_modules key: ${{ runner.os }}-node-${{ hashFiles('core/package-lock.json') }} - name: Cache gui node_modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: gui/node_modules key: ${{ runner.os }}-node-${{ hashFiles('gui/package-lock.json') }}