Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
runs-on: windows-2025-vs2026

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Cache Vulkan SDK
id: vulkan-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: C:\VulkanSDK
key: vulkan-sdk-windows-1.3.290.0
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
vcpkgGitCommitId: 57987637aac17d62bac535bc839baca3754490e6

- name: Cache vcpkg installed packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: build/vcpkg_installed
# Runner image is baked into the key (not just "windows-x64") so a
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install Vulkan SDK and build tools
run: |
Expand All @@ -129,7 +129,7 @@ jobs:
vcpkgGitCommitId: 57987637aac17d62bac535bc839baca3754490e6

- name: Cache vcpkg installed packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: build/vcpkg_installed
key: vcpkg-linux-x64-${{ hashFiles('vcpkg.json') }}-57987637
Expand Down
Loading