From 5acf209a7ff7079e98ede6e1e8746f86f26da9a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 13:12:53 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linux.yaml | 8 ++++---- .github/workflows/macos.yaml | 2 +- .github/workflows/uwp.yaml | 2 +- .github/workflows/windows.yaml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index 0185e2ba..a7e8f7e8 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -24,7 +24,7 @@ jobs: run: dpkg --list | grep compiler - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built @@ -51,7 +51,7 @@ jobs: run: dpkg --list | grep compiler - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built @@ -77,7 +77,7 @@ jobs: shell: alpine.sh {0} steps: - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - uses: jirutka/setup-alpine@v1 with: @@ -112,7 +112,7 @@ jobs: run: dpkg --list | grep compiler - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 19d1ead0..efeae1cf 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -17,7 +17,7 @@ jobs: CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON -G Ninja steps: - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -DCMAKE_OSX_ARCHITECTURES="${{ matrix.arch }}" diff --git a/.github/workflows/uwp.yaml b/.github/workflows/uwp.yaml index 37e8a854..c54250a3 100644 --- a/.github/workflows/uwp.yaml +++ b/.github/workflows/uwp.yaml @@ -22,7 +22,7 @@ jobs: # TODO use CreateFile2 and add -DENABLE_WIN32_IO=ON steps: - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }} -DBUILD_SHARED_LIBS=OFF diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 8bfee689..8479c6f9 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -22,7 +22,7 @@ jobs: CMAKE_OPTIONS: -DDEV_MODE=ON -DCMAKE_CXX_FLAGS_INIT="-DWINVER=0x0501" -DBUILD_TESTING=ON steps: - name: Get pushed code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure library run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }}