From 0d9520bcc025d0c52064f1d84a852b211f048afe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 08:40:13 +0100 Subject: [PATCH] ci: :arrow_up: bump actions/cache from 3 to 4 (#86) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/api-docs-release.yml | 2 +- .github/workflows/python-build.yml | 2 +- .github/workflows/python-lint.yml | 2 +- .github/workflows/python-test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/api-docs-release.yml b/.github/workflows/api-docs-release.yml index 0355ede..550ff42 100644 --- a/.github/workflows/api-docs-release.yml +++ b/.github/workflows/api-docs-release.yml @@ -22,7 +22,7 @@ jobs: with: python-version: "3.10" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-apidocs-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }} diff --git a/.github/workflows/python-build.yml b/.github/workflows/python-build.yml index 594bfb7..a4266f5 100644 --- a/.github/workflows/python-build.yml +++ b/.github/workflows/python-build.yml @@ -20,7 +20,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-build-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }} diff --git a/.github/workflows/python-lint.yml b/.github/workflows/python-lint.yml index 550645a..06757f7 100644 --- a/.github/workflows/python-lint.yml +++ b/.github/workflows/python-lint.yml @@ -17,7 +17,7 @@ jobs: with: python-version: "3.10" - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-lint-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }} diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 6ba0fca..f22e090 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -20,7 +20,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-test-${{ steps.setup-python.outputs.python-version }}-${{ github.sha }}