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/ffmpeg-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ jobs:
run: brew update && brew install yasm autoconf ragel meson nasm automake libtool python3

- name: Cache FFmpeg source downloads
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .build/downloads
key: ${{ runner.os }}-${{ runner.arch }}-ffmpeg-downloads-${{ hashFiles('internal/builder/libraries.go') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-ffmpeg-downloads-

- name: Cache compiled dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
.build/staging
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ffmpeg-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
echo "buildsystems-hash=$(sha256sum internal/builder/buildsystems.go | cut -d' ' -f1 | head -c 8)" >> $GITHUB_OUTPUT

- name: Cache FFmpeg source downloads
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .build/downloads
# Workaround for GitHub Actions bug: https://github.com/actions/runner-images/issues/13341
Expand All @@ -79,7 +79,7 @@ jobs:
${{ runner.os }}-${{ runner.arch }}-ffmpeg-downloads-

- name: Cache compiled dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
.build/staging
Expand Down
Loading