Skip to content
Merged
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
ci: Bump to actions/checkout@v6
  • Loading branch information
MarcoFalke committed Mar 23, 2026
commit 39c8a9b57dac114af9e5d0cdf6c198f6a61c0708
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run:
working-directory: build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Create build directory
run: mkdir -p build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_find_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: lukka/get-cmake@latest
with:
cmakeVersion: 3.14.0
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/compilers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cxx_version: 23
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Run CMake (configure, build, test)
uses: ./.github/workflows/cmake
Expand All @@ -51,7 +51,7 @@ jobs:
cxx_version: 23
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Run CMake (configure, build, test)
uses: ./.github/workflows/cmake
Expand All @@ -66,7 +66,7 @@ jobs:
cxx_version: [ 14, 17, 20, 23 ]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: select xcode version
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version }}.app
Expand All @@ -87,7 +87,7 @@ jobs:
cxx_version: [ 14, 17, 20, 23 ]
runs-on: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: microsoft/setup-msbuild@v2

- name: Run CMake (configure, build, test)
Expand All @@ -97,4 +97,3 @@ jobs:
extra_cmake_configure_args: ${{ matrix.extra_args }}
extra_cmake_build_args: --config ${{ matrix.build_type }}
extra_ctest_args: -C ${{ matrix.build_type }}

3 changes: 1 addition & 2 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Build Dependencies
run: sudo apt-get update && sudo apt-get install -y clang cmake make
Expand All @@ -19,4 +19,3 @@ jobs:

- name: Configure CMake (C++20)
run: cmake --preset clang-20-debug

2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
run:
working-directory: build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Create build directory
run: mkdir -p build
Expand Down
Loading