diff --git a/.github/workflows/_build-backend.yml b/.github/workflows/_build-backend.yml index a1c5664..dc1258d 100644 --- a/.github/workflows/_build-backend.yml +++ b/.github/workflows/_build-backend.yml @@ -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' @@ -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: | @@ -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: | @@ -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/ @@ -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 @@ -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 @@ -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: | @@ -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: | @@ -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: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8bc777..3c8c2e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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; @@ -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 diff --git a/.github/workflows/warm-cache.yml b/.github/workflows/warm-cache.yml index abbbae9..c4cad2c 100644 --- a/.github/workflows/warm-cache.yml +++ b/.github/workflows/warm-cache.yml @@ -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 @@ -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') {