Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Bump the all group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the all group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/dependency-review-action](https://github.com/actions/dependency-review-action).


Updates `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)

Updates `actions/dependency-review-action` from 3 to 4
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](actions/dependency-review-action@v3...v4)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Feb 1, 2024
1 parent 4503d51 commit 8857c70
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
id: pip-cache-dir
- name: pip cache
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: pip-${{ github.job }}-${{ hashFiles('poetry.lock') }}
restore-keys: pip-${{ github.job }}

- name: pre-commit cache
id: pre-commit-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('**/.pre-commit-config.yaml') }}
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: psf/black@stable
- name: tox dir
id: tox-dir
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .tox
key: tox-${{ github.job }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
id: pip-cache-dir
- name: pip cache
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: pip-${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}
Expand All @@ -91,7 +91,7 @@ jobs:
- name: tox dir
id: tox-dir
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .tox
key: tox-${{ github.job }}-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
Expand All @@ -114,7 +114,7 @@ jobs:
id: pip-cache-dir
- name: pip cache
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: pip-${{ github.job }}-${{ hashFiles('pyproject.toml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
uses: actions/dependency-review-action@v4
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
id: pip-cache-dir
- name: pip cache
id: pip-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: pip-${{ github.job }}-${{ hashFiles('pyproject.toml') }}
Expand Down

0 comments on commit 8857c70

Please sign in to comment.