From 481c6fb76cee090aea3423cd37dc1f262dd89181 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 10:06:57 +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/apply.yml | 4 ++-- .github/workflows/gadget-lint.yaml | 2 +- .github/workflows/update_mirrors.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/apply.yml b/.github/workflows/apply.yml index 35b04c6..4ff2a46 100644 --- a/.github/workflows/apply.yml +++ b/.github/workflows/apply.yml @@ -22,7 +22,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} @@ -30,7 +30,7 @@ jobs: ${{ runner.os }}-yarn- - name: Cache python modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} diff --git a/.github/workflows/gadget-lint.yaml b/.github/workflows/gadget-lint.yaml index 5942e8b..2734fa7 100644 --- a/.github/workflows/gadget-lint.yaml +++ b/.github/workflows/gadget-lint.yaml @@ -20,7 +20,7 @@ jobs: - name: Get yarn cache id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ${{ steps.yarn-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/update_mirrors.yml b/.github/workflows/update_mirrors.yml index ecc731b..ce3cede 100644 --- a/.github/workflows/update_mirrors.yml +++ b/.github/workflows/update_mirrors.yml @@ -18,7 +18,7 @@ jobs: python-version: '3.x' - name: Cache python modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}