Skip to content

Commit

Permalink
Bump actions/cache from 3.3.3 to 4.0.0 (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 22, 2024
1 parent 138d353 commit 23b3ee4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
'requirements_test_pre_commit.txt') }}" >> $GITHUB_OUTPUT
- name: Restore Python virtual environment
id: cache-venv
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: venv
key: >-
Expand All @@ -59,7 +59,7 @@ jobs:
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
- name: Restore pre-commit environment
id: cache-precommit
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: ${{ env.PRE_COMMIT_CACHE }}
key: >-
Expand Down Expand Up @@ -97,15 +97,15 @@ jobs:
check-latest: true
- name: Restore Python virtual environment
id: cache-venv
uses: actions/cache/restore@v3.3.3
uses: actions/cache/restore@v4.0.0
with:
fail-on-cache-miss: true
path: venv
key: ${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{
needs.prepare-base.outputs.python-key }}
- name: Restore pre-commit environment
id: cache-precommit
uses: actions/cache/restore@v3.3.3
uses: actions/cache/restore@v4.0.0
with:
fail-on-cache-miss: true
path: ${{ env.PRE_COMMIT_CACHE }}
Expand All @@ -131,7 +131,7 @@ jobs:
check-latest: true
- name: Restore Python virtual environment
id: cache-venv
uses: actions/cache/restore@v3.3.3
uses: actions/cache/restore@v4.0.0
with:
fail-on-cache-miss: true
path: venv
Expand All @@ -157,7 +157,7 @@ jobs:
check-latest: true
- name: Restore Python virtual environment
id: cache-venv
uses: actions/cache/restore@v3.3.3
uses: actions/cache/restore@v4.0.0
with:
fail-on-cache-miss: true
path: venv
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
'requirements_test_pre_commit.txt') }}" >> $GITHUB_OUTPUT
- name: Restore Python virtual environment
id: cache-venv
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: venv
key: >-
Expand Down

0 comments on commit 23b3ee4

Please sign in to comment.