From 9ae4cb137ea46c9a29cdcf56032dae624f6ff8d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:09:40 -0700 Subject: [PATCH] Bump actions/cache from 1 to 4 (#306) Bumps [actions/cache](https://github.com/actions/cache) from 1 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/v1...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/check-release.yml | 4 ++-- .github/workflows/docs.yml | 2 +- .github/workflows/js.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml index 4173d424a..55cd4d625 100644 --- a/.github/workflows/check-release.yml +++ b/.github/workflows/check-release.yml @@ -25,7 +25,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }} @@ -34,7 +34,7 @@ jobs: ${{ runner.os }}-pip- - name: Cache checked links if: ${{ matrix.group == 'link_check' }} - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.cache/pytest-link-check key: ${{ runner.os }}-linkcheck-${{ hashFiles('**/*.md', '**/*.rst') }}-md-links diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 466091871..a30348548 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,7 +28,7 @@ jobs: run: | echo "::set-output name=dir::$(pip cache dir)" - name: Cache pip - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.py') }} diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index dff4a0f74..cf28155af 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -29,7 +29,7 @@ jobs: node-version: '12.x' - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -42,7 +42,7 @@ jobs: ${{ runner.os }}- - name: Cache pip on Linux - uses: actions/cache@v1 + uses: actions/cache@v4 if: startsWith(runner.os, 'Linux') with: path: ~/.cache/pip