From dcb82ab0a6aee7637a1edf5a3e42542213e853e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 03:40:45 +0000 Subject: [PATCH] chore(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-version: '4' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 320c908..67c5f18 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: echo "::set-output name=dir::$(npm config get cache)" - name: Setup npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -39,7 +39,7 @@ jobs: architecture: "x64" - name: Setup pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: pip-3.7-${{ hashFiles('package.json') }} @@ -137,7 +137,7 @@ jobs: # echo "::set-output name=dir::$(npm config get cache)" # - name: Setup npm cache - # uses: actions/cache@v3 + # uses: actions/cache@v4 # with: # path: ${{ steps.npm-cache.outputs.dir }} # key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -152,7 +152,7 @@ jobs: # architecture: "x64" # - name: Setup pip cache - # uses: actions/cache@v3 + # uses: actions/cache@v4 # with: # path: ~/.cache/pip # key: pip-3.7-${{ hashFiles('package.json') }}