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') }}