Skip to content

Commit 03a0ca2

Browse files
author
Jonas Heinle
committed
version upgrade
1 parent e522922 commit 03a0ca2

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/linux_run.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
shell: bash
2828
# Run this job inside the GHCR container:
2929
container:
30-
image: ghcr.io/kataglyphis/kataglyphis_beschleuniger:latest_multiarch
30+
image: ghcr.io/kataglyphis/kataglyphis_beschleuniger:latest
3131
credentials:
3232
username: ${{ github.actor }}
3333
password: ${{ secrets.GHCR_PAT }}
@@ -45,18 +45,18 @@ jobs:
4545
DOCS_OUT: build/build/html
4646

4747
steps:
48-
- uses: actions/checkout@v5.0.0
48+
- uses: actions/checkout@v6.0.0
4949
with:
5050
fetch-depth: 0
5151
submodules: recursive
5252

5353
#################################################################################################################
5454
######################################## Prepare deps ###########################################################
5555
#################################################################################################################
56-
- name: Install deps
57-
uses: ./.github/actions/install-deps
58-
with:
59-
vulkan-version: ${{ env.VULKAN_VERSION }}
56+
# - name: Install deps
57+
# uses: ./.github/actions/install-deps
58+
# with:
59+
# vulkan-version: ${{ env.VULKAN_VERSION }}
6060
#- name: Install dependencies
6161
# run: |
6262
# sudo apt-get purge --auto-remove -y cmake
@@ -331,7 +331,7 @@ jobs:
331331
332332
- name: Upload Linux Packages (Clang only)
333333
if: ${{ inputs.compiler == 'clang' }}
334-
uses: actions/upload-artifact@v4.6.2
334+
uses: actions/upload-artifact@v5.0.0
335335
with:
336336
name: linux-packages
337337
path: |

.github/workflows/windows_run.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
BUILD_DIR: "build"
1111
BUILD_DIR_RELEASE: "build_release"
12-
CLANG_VERSION: 21.1.1
12+
CLANG_VERSION: 21.1.6
1313
LLVM_BIN: 'C:\Program Files\LLVM\bin'
1414
CLANG_PROFILE_PRESET: x64-ClangCL-Windows-Profile
1515

@@ -22,7 +22,7 @@ jobs:
2222
runs-on: windows-2025
2323

2424
steps:
25-
- uses: actions/checkout@v5.0.0
25+
- uses: actions/checkout@v6.0.0
2626
with:
2727
fetch-depth: 0
2828
submodules: recursive
@@ -151,7 +151,7 @@ jobs:
151151
run: cmake --build "${{ github.workspace }}/${{ env.BUILD_DIR_RELEASE }}" --preset x64-ClangCL-Windows-Release --target package
152152

153153
- name: Upload Installers & Zip
154-
uses: actions/upload-artifact@v4.6.2
154+
uses: actions/upload-artifact@v5.0.0
155155
with:
156156
name: windows-installers
157157
path: |

ExternalLib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include(FetchContent)
33
# include google test to project
44
if(BUILD_TESTING)
55
FetchContent_Declare(googletest
6-
URL https://github.com/google/googletest/archive/9706f75b8f91c52a3840cf5d878a7f37ea10ef00.zip)
6+
URL https://github.com/google/googletest/archive/1b96fa13f549387b7549cc89e1a785cf143a1a50.zip)
77
set(gtest_force_shared_crt
88
ON
99
CACHE BOOL "" FORCE)

0 commit comments

Comments
 (0)