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
18 changes: 9 additions & 9 deletions .github/workflows/_build-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Linux dependencies
if: inputs.platform == 'linux'
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:

- name: Cache vcpkg FFmpeg (Windows)
if: inputs.platform == 'windows'
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-vcpkg-ffmpeg-windows
with:
path: |
Expand All @@ -161,7 +161,7 @@ jobs:

- name: Cache vcpkg FFmpeg (Unix)
if: inputs.platform != 'windows'
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-vcpkg-ffmpeg-unix
with:
path: |
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:

- name: Cache cargo and build artifacts
id: cache-restore
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry/
Expand All @@ -237,7 +237,7 @@ jobs:
- name: Cache cargo-packager (Unix)
if: inputs.platform != 'windows'
id: tools-cache-restore-unix
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/bin/cargo-packager
Expand All @@ -246,7 +246,7 @@ jobs:
- name: Cache cargo-packager (Windows)
if: inputs.platform == 'windows'
id: tools-cache-restore-win
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/bin/cargo-packager.exe
Expand Down Expand Up @@ -579,7 +579,7 @@ jobs:

- name: Upload Windows artifacts
if: inputs.platform == 'windows' && inputs.cache_only != true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: windows-${{ inputs.backend }}
path: |
Expand All @@ -591,7 +591,7 @@ jobs:

- name: Upload Linux artifacts
if: inputs.platform == 'linux' && inputs.cache_only != true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: linux-${{ inputs.backend }}-combined
path: |
Expand All @@ -603,7 +603,7 @@ jobs:

- name: Upload macOS artifacts
if: inputs.platform == 'macos' && inputs.cache_only != true
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: macos-${{ inputs.backend }}-combined
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Wait for warm-cache workflow to complete
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const maxWaitMinutes = 60;
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
on-main: ${{ steps.check.outputs.on-main }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history to check branches

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/warm-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
on-main: ${{ steps.check.outputs.on-main }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Check if tag is on main branch
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
steps:
- name: Check cache existence and age (12h threshold)
id: check
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
if (context.eventName === 'workflow_dispatch') {
Expand Down