Skip to content

Commit

Permalink
Merge pull request #1660 from mikel-brostrom/renovate/actions-cache-4.x
Browse files Browse the repository at this point in the history
Update actions/cache action to v4
  • Loading branch information
mikel-brostrom authored Sep 21, 2024
2 parents d9cad55 + 7d3870b commit d9e8756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# Restore the cached dataset (if available)
- name: Restore MOT17 dataset cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
# Specify the path where the dataset is stored
path: tracking/val_utils/MOT17-50.zip
Expand All @@ -76,7 +76,7 @@ jobs:
# Cache data for future runs (only if the cache was not already restored)
- name: Cache MOT17.zip if not already cached
if: steps.cache-restore.outputs.cache-hit != 'true' # Only run if the cache was not hit
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: tracking/val_utils/MOT17-50.zip
key: mot17-50-dataset-cache-v3
Expand Down

0 comments on commit d9e8756

Please sign in to comment.