Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 18, 2024
1 parent 38f5c66 commit 75f5ef5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: poetry-${{ hashFiles('poetry.lock') }}
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: poetry-${{ hashFiles('poetry.lock') }}
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
with:
python-version: ${{ matrix.python_version }}

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.nox
key: nox-${{ matrix.python_version }}-${{ hashFiles('poetry.lock') }}
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.cache/pypoetry/virtualenvs
key: poetry-${{ hashFiles('poetry.lock') }}
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.nox
key: nox-${{ hashFiles('poetry.lock') }}
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
# when launching pylint with python 3.12
python-version: '3.11'

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ~/.nox
key: nox-${{ hashFiles('poetry.lock') }}
Expand Down

0 comments on commit 75f5ef5

Please sign in to comment.