Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: wget https://raw.githubusercontent.com/awslabs/palace/refs/tags/v0.16.0/singularity/singularity.def # Newer versions of palace have deprecated singularity definitions, so we pin to a specific version. TODO: Update this
- name: Cache Palace container restore
id: cache-palace-restore
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: palace.sif
key: palace-container-${{ runner.os }}-${{ hashFiles('singularity.def') }}
Expand All @@ -45,7 +45,7 @@ jobs:
exit 0
}
- name: Cache Palace container save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
if: steps.cache-palace-restore.outputs.cache-hit != 'true' && hashFiles('palace.sif') != ''
with:
path: palace.sif
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
run: wget https://raw.githubusercontent.com/awslabs/palace/refs/tags/v0.16.0/singularity/singularity.def # Newer versions of palace have deprecated singularity definitions, so we pin to a specific version. TODO: Update this
- name: Cache Palace container restore
id: cache-palace-restore
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: palace.sif
key: palace-container-${{ runner.os }}-${{ hashFiles('singularity.def') }}
Expand All @@ -110,7 +110,7 @@ jobs:
exit 1
}
- name: Cache Palace container save
uses: actions/cache/save@v5
uses: actions/cache/save@v6
if: steps.cache-palace-restore.outputs.cache-hit != 'true'
with:
path: palace.sif
Expand Down
Loading