From a322574d59d188f32b38593142d8b5e66c505396 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 03:02:29 +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/main.yaml | 6 +++--- .github/workflows/preview.yaml | 6 +++--- .github/workflows/ts-check.yaml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 107162244..9113cd7e5 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -64,19 +64,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 a04591c89..dd7a31ac8 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -55,19 +55,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/ts-check.yaml b/.github/workflows/ts-check.yaml index 193988990..81d25dffe 100644 --- a/.github/workflows/ts-check.yaml +++ b/.github/workflows/ts-check.yaml @@ -23,25 +23,25 @@ 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') }} - 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') }}