Skip to content

Commit aa87ff3

Browse files
⬆ Bump actions/cache from 2 to 3 (#497)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0fe1e6d commit aa87ff3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
3131
with:
3232
limit-access-to-actor: true
33-
- uses: actions/cache@v2
33+
- uses: actions/cache@v3
3434
id: cache
3535
with:
3636
path: ${{ env.pythonLocation }}
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install Material for MkDocs Insiders
5454
if: github.event.pull_request.head.repo.fork == false && steps.cache.outputs.cache-hit != 'true'
5555
run: python -m poetry run pip install git+https://${{ secrets.ACTIONS_TOKEN }}@github.com/squidfunk/mkdocs-material-insiders.git
56-
- uses: actions/cache@v2
56+
- uses: actions/cache@v3
5757
with:
5858
key: mkdocs-cards-${{ github.ref }}
5959
path: .cache

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
2727
with:
2828
limit-access-to-actor: true
29-
- uses: actions/cache@v2
29+
- uses: actions/cache@v3
3030
id: cache
3131
with:
3232
path: ${{ env.pythonLocation }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled }}
3434
with:
3535
limit-access-to-actor: true
36-
- uses: actions/cache@v2
36+
- uses: actions/cache@v3
3737
id: cache
3838
with:
3939
path: ${{ env.pythonLocation }}

0 commit comments

Comments
 (0)