ci: Bump GHA actions versions

Github-Pull: #34802
Rebased-From: fadaa7db33
This commit is contained in:
MarcoFalke
2026-03-11 14:54:37 +01:00
committed by fanquake
parent e292a7b507
commit 1bc5233c19
2 changed files with 8 additions and 8 deletions

View File

@@ -167,7 +167,7 @@ jobs:
- name: Restore Ccache cache
id: ccache-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ env.CCACHE_DIR }}
key: ${{ github.job }}-${{ matrix.job-type }}-ccache-${{ github.run_id }}
@@ -179,7 +179,7 @@ jobs:
FILE_ENV: ${{ matrix.file-env }}
- name: Save Ccache cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'
with:
path: ${{ env.CCACHE_DIR }}
@@ -246,7 +246,7 @@ jobs:
key: ${{ github.job }}-vcpkg-tools
- name: Restore vcpkg binary cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: vcpkg-binary-cache
with:
path: ~/AppData/Local/vcpkg/archives
@@ -257,7 +257,7 @@ jobs:
cmake -B build -Werror=dev --preset vs2022 -DCMAKE_TOOLCHAIN_FILE="${VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake" ${{ matrix.generate-options }}
- name: Save vcpkg binary cache
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: github.event_name != 'pull_request' && steps.vcpkg-binary-cache.outputs.cache-hit != 'true' && matrix.job-type == 'standard'
with:
path: ~/AppData/Local/vcpkg/archives
@@ -358,7 +358,7 @@ jobs:
uses: ./.github/actions/save-caches
- name: Upload built executables
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: x86_64-w64-mingw32-executables-${{ github.run_id }}
path: |
@@ -380,7 +380,7 @@ jobs:
- *CHECKOUT
- name: Download built executables
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: x86_64-w64-mingw32-executables-${{ github.run_id }}