From e393f2e5eeda5cd7cbf278ecf69036407ed3cabc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 22:05:58 +0000 Subject: [PATCH] build(deps): 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/preview.yaml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/jetbrains-release.yaml b/.github/workflows/jetbrains-release.yaml index b8c473604f..1d69cdf292 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 ae0359027d..a134f69bb0 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/preview.yaml b/.github/workflows/preview.yaml index bd5f4b7acb..1b6c87a7c2 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') }}