From ab17495e3a6113cf2771cba30bd8c315a92f09ad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 16:38:25 -0900 Subject: [PATCH] chore: bump actions/cache from 3 to 4 (#6650) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 089157279..9832f8fdf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -124,7 +124,7 @@ jobs: - name: Fetch dependencies from cache if: steps.changed-files.outputs.any_changed == 'true' id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: yarn-build-${{ hashFiles('**/yarn.lock') }} @@ -179,7 +179,7 @@ jobs: - name: Fetch dependencies from cache if: steps.changed-files.outputs.any_changed == 'true' id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: yarn-build-${{ hashFiles('**/yarn.lock') }} @@ -231,7 +231,7 @@ jobs: - name: Fetch dependencies from cache id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: yarn-build-code-server-${{ hashFiles('**/yarn.lock') }} @@ -259,7 +259,7 @@ jobs: # force a rebuild. - name: Fetch prebuilt Code package from cache id: cache-vscode - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: lib/vscode-reh-web-* key: vscode-reh-package-${{ secrets.VSCODE_CACHE_VERSION }}-${{ steps.vscode-rev.outputs.rev }}-${{ hashFiles('patches/*.diff', 'ci/build/build-vscode.sh') }} @@ -305,7 +305,7 @@ jobs: - name: Fetch dependencies from cache id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: yarn-build-${{ hashFiles('**/yarn.lock') }} @@ -364,7 +364,7 @@ jobs: - name: Fetch dependencies from cache id: cache-node-modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: yarn-build-${{ hashFiles('**/yarn.lock') }} @@ -392,7 +392,7 @@ jobs: ./test/node_modules/.bin/playwright install - name: Cache Caddy - uses: actions/cache@v3 + uses: actions/cache@v4 id: caddy-cache with: path: |