Skip to content

Commit d9e495d

Browse files
committed
Update actions/cache version to fix pacman repo build.
This fixes build breakages caused by the deprecation of the old cache system announced in actions/cache#1510
1 parent 8e6ac6f commit d9e495d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_pacman_repo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
pacman -Sl mingw64 msys > mingw-package-version-list.txt
4545
- name: Restore natron repo directory from cache
4646
id: restore-natron-repo-cache
47-
uses: actions/cache/restore@v4.0.0
47+
uses: actions/cache/restore@v4
4848
with:
4949
path: natron_repo
5050
key: ${{ env.cache-name }}-${{ hashFiles('mingw-package-version-list.txt', 'tools/MINGW-packages/**/PKGBUILD') }}
@@ -59,7 +59,7 @@ jobs:
5959
echo "REPO_VERSION=${REPO_VERSION}" >> "$GITHUB_OUTPUT"
6060
- name: Save natron repo directory to cache
6161
id: save-natron-repo-cache
62-
uses: actions/cache/save@v4.0.0
62+
uses: actions/cache/save@v4
6363
# save even if build fails.
6464
if: always()
6565
with:
@@ -72,4 +72,4 @@ jobs:
7272
path: natron_repo
7373
- name: Check on failures
7474
if: steps.build-package-repo.outcome != 'success'
75-
run: exit 1
75+
run: exit 1

0 commit comments

Comments
 (0)