From 942dd1c6d2c14ce5e4feb0657115a3e7f162f52d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 01:51:54 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 (#189) --- .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 2dc69f6..a914a75 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 a8e78db..e075452 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 66e8f91..f2119e5 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') }}