Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/scripts/CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"configurePresets": [
{
"name": ".base-msvc",
"generator": "Visual Studio 17 2022",
"generator": "Visual Studio 18 2026",
"hidden": true,
"installDir": "$env{INSTALL_DIR}",
"cacheVariables": {
Expand Down Expand Up @@ -68,7 +68,7 @@
},
{
"name": ".base-cts-msvc",
"generator": "Visual Studio 17 2022",
"generator": "Visual Studio 18 2026",
"hidden": true,
"installDir": "$env{INSTALL_DIR}",
"cacheVariables": {
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
loader:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Get modern CMake and Ninja
uses: "lukka/get-cmake@v4.2.3"
uses: "lukka/get-cmake@v4.3.4"

# Do this before building aar since it affects the version
- name: Touch SNAPSHOT marker file
Expand All @@ -45,9 +45,9 @@ jobs:
build-helloxr:
runs-on: ubuntu-latest
steps:
- uses: "actions/checkout@v6"
- uses: "actions/checkout@v7"
- name: "Get modern CMake and Ninja"
uses: "lukka/get-cmake@v4.2.3"
uses: "lukka/get-cmake@v4.3.4"
- name: "set up JDK"
uses: "actions/setup-java@v5"
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_clang_format_and_codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
image: khronosgroup/docker-images:openxr.20260415@sha256:800fd68bd1b16b426555158f4aa06b2ef1c150fba922d7a11361fc85f6ba0bcd

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ${{ matrix.device }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: "Get modern CMake and Ninja"
uses: "lukka/get-cmake@v4.2.3"
uses: "lukka/get-cmake@v4.3.4"
- name: Prepare Vulkan SDK
uses: humbletim/setup-vulkan-sdk@v1.2.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/msvc-build-preset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
VULKAN_SDK_VERSION: "1.1.114.0"
INSTALL_DIR: "${{ github.workspace }}/install"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
lfs: true
fetch-tags: "${{ !github.event.release }}"
fetch-depth: "${{ github.event.release && '0' || '1'}}"

- name: Get modern CMake and Ninja
uses: lukka/get-cmake@v4.2.3
uses: lukka/get-cmake@v4.3.4

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# outputs:
# matrix: "${{ steps.set-matrix.outputs.matrix }}"
# steps:
# - uses: "actions/checkout@v6"
# - uses: "actions/checkout@v7"
# - id: set-matrix
# run: "python3 .github/scripts/generate_windows_matrix_build.py matrix"
msvc-build:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- msvc-build
runs-on: ubuntu-22.04
steps:
- uses: "actions/checkout@v6"
- uses: "actions/checkout@v7"

- name: Retrieve artifacts
uses: "actions/download-artifact@v8"
Expand Down
Loading