Skip to content

Commit

Permalink
Merge pull request #239 from Anaconda-Platform/renovate/actions-cache…
Browse files Browse the repository at this point in the history
…-4.x

chore(deps): update actions/cache action to v4
  • Loading branch information
mcg1969 authored Mar 4, 2024
2 parents a614fd2 + 9eeaea2 commit 50dbeb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
# have already built the testbed. Any small file will do
- id: cache-key
name: Retrieve cache key
uses: actions/cache@v2
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
with:
path: ./LICENSE
key: key-${{ matrix.os }}-${{ hashFiles('testbed') }}
- id: cache
name: Retrieve or create the conda cache
if: steps.cache-key.outputs.cache-hit != 'true'
uses: actions/cache@v2
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
with:
path: ${{ steps.conda-root.outputs.value }}
key: testbed-${{ matrix.os }}-${{ hashFiles('testbed') }}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
echo "CONDA_ROOT=$CONDA_ROOT" >> $GITHUB_ENV
echo "CONDA_ROOT: $CONDA_ROOT"
- name: Retrieve the testbed
uses: actions/cache@v2
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4
with:
path: ${{ steps.conda-root.outputs.value }}
key: testbed-${{ matrix.os }}-${{ hashFiles('testbed') }}
Expand Down

0 comments on commit 50dbeb2

Please sign in to comment.