-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
527b1db
commit f0e2c06
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -144,7 +144,7 @@ jobs: | |
- uses: actions/[email protected] | ||
|
||
- name: Cache conda | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/conda_pkgs_dir | ||
key: ${{ runner.os }}-conda-${{hashFiles('requirements/environment.yml') }}-${{ hashFiles('**/CI.yml') }}-${{ steps.date.outputs.date }} | ||
|
@@ -364,7 +364,7 @@ jobs: | |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | ||
- name: Cache pip | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
|
||
|
@@ -449,7 +449,7 @@ jobs: | |
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT | ||
- name: Cache pip | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pip-cache.outputs.dir }} | ||
# Look to see if there is a cache hit for the corresponding requirements files | ||
|
@@ -515,7 +515,7 @@ jobs: | |
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Cache test_env | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/test_env | ||
# Look to see if there is a cache hit for the corresponding requirements files | ||
|