Skip to content

Commit

Permalink
build(deps): Bump actions/cache from 2.1.7 to 3.0.4 (#149)
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v2.1.7...v3.0.4)

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

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jun 8, 2022
1 parent 4115b54 commit 30d5889
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: "python3 -m pip install poetry==${{ env.POETRY_VERSION }}"

- name: "Cache venv"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3.0.4"
with:
path: "./.venv/"
key: "venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}"
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
run: "python3 -m pip install poetry==${{ env.POETRY_VERSION }} tox==${{ env.TOX_VERSION }} tox-gh-actions==${{ env.TOX_GH_ACTIONS_VERSION }}"

- name: "Cache venv"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3.0.4"
with:
path: "./.venv/"
key: "venv-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}"
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
run: "python3 -m pip install poetry==${{ env.POETRY_VERSION }}"

- name: "Cache venv"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3.0.4"
with:
path: ".venv"
key: "venv-${{ env.DEV_PYTHON_VERSION }}-${{ hashFiles('poetry.lock') }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: "python3 -m pip install poetry==${{ env.POETRY_VERSION }}"

- name: "Cache venv"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3.0.4"
with:
path: ".venv"
key: "venv-${{ env.PYTHON_VERSION }}-${{ hashFiles('poetry.lock') }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: "python3 -m pip install poetry==${{ env.POETRY_VERSION }}"

- name: "Cache venv"
uses: "actions/cache@v2.1.7"
uses: "actions/cache@v3.0.4"
with:
path: ".venv"
key: "venv-${{ env.PYTHON_VERSION }}-${{ hashFiles('poetry.lock') }}"
Expand Down

0 comments on commit 30d5889

Please sign in to comment.