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
2 changes: 1 addition & 1 deletion .github/workflows/build_appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Cache GPAC build
if: steps.should_build.outputs.should_build == 'true'
id: cache-gpac
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /usr/local/lib/libgpac*
key: gpac-v2.4.0-ubuntu22
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Cache GPAC build
if: steps.should_build.outputs.should_build == 'true'
id: cache-gpac
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/gpac-install
key: gpac-abi-16.4-ubuntu24-deb
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
run: sudo apt update && sudo apt-get install libgpac-dev libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
src/rust/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
src/rust/.cargo/registry
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
# Cache vcpkg installed packages separately for faster restores
- name: Cache vcpkg installed packages
id: vcpkg-installed-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ github.workspace }}/vcpkg/installed
key: vcpkg-installed-${{ runner.os }}-${{ matrix.vcpkg_triplet }}-${{ env.VCPKG_COMMIT }}-${{ hashFiles('windows/vcpkg.json') }}
Expand All @@ -84,7 +84,7 @@ jobs:

# Cache Rust/Cargo artifacts
- name: Cache Cargo registry
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand All @@ -95,7 +95,7 @@ jobs:

# Cache Cargo build artifacts - rust.bat sets CARGO_TARGET_DIR to windows/
- name: Cache Cargo build artifacts
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ github.workspace }}/windows/${{ matrix.rust_target }}
key: ${{ runner.os }}-${{ matrix.arch }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('src/rust/**/*.rs') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ matrix.workdir }}/.cargo/registry
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
# Cache vcpkg installed packages separately for faster restores
- name: Cache vcpkg installed packages
id: vcpkg-installed-cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ github.workspace }}/vcpkg/installed
key: vcpkg-installed-${{ runner.os }}-${{ matrix.vcpkg_triplet }}-${{ env.VCPKG_COMMIT }}-${{ hashFiles('windows/vcpkg.json') }}
Expand All @@ -95,7 +95,7 @@ jobs:

# Cache Cargo registry
- name: Cache Cargo registry
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
src/rust/.cargo/registry
Expand Down
Loading