From 94e1504bb71784574134f7a43d9d3b8253d6ae49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 22:11:12 +0000 Subject: [PATCH] Bump actions/checkout from 4.2.2 to 5.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [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/11bd71901bbe5b1630ceea73d27597364c9af683...08c6903cd8c0fde910a37f88322edcfb5dd907a8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/main.yml | 198 +++++++++++++++++----------------- .github/workflows/msbuild.yml | 126 +++++++++++----------- .github/workflows/msvc.yml | 2 +- 5 files changed, 165 insertions(+), 165 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 401639f..40eea2b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: 'Install Ninja' run: choco install ninja diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 97fdefe..c4a70e4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 032d4f7..fde9f22 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,99 +1,99 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# -# http://go.microsoft.com/fwlink/?LinkId=271568 - -name: 'CMake (Windows)' - -on: - push: - branches: "main" - paths-ignore: - - '*.md' - - LICENSE - - '.azuredevops/**' - - '.nuget/*' - pull_request: - branches: "main" - paths-ignore: - - '*.md' - - LICENSE - - '.azuredevops/**' - - '.nuget/*' - -permissions: - contents: read - -jobs: - build: - runs-on: windows-2022 - - strategy: - fail-fast: false - - matrix: - toolver: ['14.29', '14'] - build_type: [x64-Debug, x64-Release] - arch: [amd64] - include: - - toolver: '14.29' - build_type: x86-Debug - arch: amd64_x86 - - toolver: '14.29' - build_type: x86-Release - arch: amd64_x86 - - toolver: '14' - build_type: x86-Debug - arch: amd64_x86 - - toolver: '14' - build_type: x86-Release - arch: amd64_x86 - - toolver: '14' - build_type: arm64-Debug - arch: amd64_arm64 - - toolver: '14' - build_type: arm64-Release - arch: amd64_arm64 - - toolver: '14' - build_type: arm64ec-Debug - arch: amd64_arm64 - - toolver: '14' - build_type: arm64ec-Release - arch: amd64_arm64 - - toolver: '14' - build_type: x64-Debug-Clang - arch: amd64 - - toolver: '14' - build_type: x64-Release-Clang - arch: amd64 - - toolver: '14' - build_type: x86-Debug-Clang - arch: amd64_x86 - - toolver: '14' - build_type: x86-Release-Clang - arch: amd64_x86 - - toolver: '14' - build_type: arm64-Debug-Clang - arch: amd64_arm64 - - toolver: '14' - build_type: arm64-Release-Clang - arch: amd64_arm64 - - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - - name: 'Install Ninja' - run: choco install ninja - - - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0 - with: - arch: ${{ matrix.arch }} - toolset: ${{ matrix.toolver }} - - - name: 'Configure CMake' - working-directory: ${{ github.workspace }} - run: cmake --preset=${{ matrix.build_type }} - - - name: 'Build' - working-directory: ${{ github.workspace }} - run: cmake --build out\build\${{ matrix.build_type }} +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# +# http://go.microsoft.com/fwlink/?LinkId=271568 + +name: 'CMake (Windows)' + +on: + push: + branches: "main" + paths-ignore: + - '*.md' + - LICENSE + - '.azuredevops/**' + - '.nuget/*' + pull_request: + branches: "main" + paths-ignore: + - '*.md' + - LICENSE + - '.azuredevops/**' + - '.nuget/*' + +permissions: + contents: read + +jobs: + build: + runs-on: windows-2022 + + strategy: + fail-fast: false + + matrix: + toolver: ['14.29', '14'] + build_type: [x64-Debug, x64-Release] + arch: [amd64] + include: + - toolver: '14.29' + build_type: x86-Debug + arch: amd64_x86 + - toolver: '14.29' + build_type: x86-Release + arch: amd64_x86 + - toolver: '14' + build_type: x86-Debug + arch: amd64_x86 + - toolver: '14' + build_type: x86-Release + arch: amd64_x86 + - toolver: '14' + build_type: arm64-Debug + arch: amd64_arm64 + - toolver: '14' + build_type: arm64-Release + arch: amd64_arm64 + - toolver: '14' + build_type: arm64ec-Debug + arch: amd64_arm64 + - toolver: '14' + build_type: arm64ec-Release + arch: amd64_arm64 + - toolver: '14' + build_type: x64-Debug-Clang + arch: amd64 + - toolver: '14' + build_type: x64-Release-Clang + arch: amd64 + - toolver: '14' + build_type: x86-Debug-Clang + arch: amd64_x86 + - toolver: '14' + build_type: x86-Release-Clang + arch: amd64_x86 + - toolver: '14' + build_type: arm64-Debug-Clang + arch: amd64_arm64 + - toolver: '14' + build_type: arm64-Release-Clang + arch: amd64_arm64 + + steps: + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + + - name: 'Install Ninja' + run: choco install ninja + + - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0 + with: + arch: ${{ matrix.arch }} + toolset: ${{ matrix.toolver }} + + - name: 'Configure CMake' + working-directory: ${{ github.workspace }} + run: cmake --preset=${{ matrix.build_type }} + + - name: 'Build' + working-directory: ${{ github.workspace }} + run: cmake --build out\build\${{ matrix.build_type }} diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 74a9c73..bfcb45c 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -1,63 +1,63 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# -# http://go.microsoft.com/fwlink/?LinkId=271568 - -name: MSBuild - -on: - push: - branches: "main" - paths-ignore: - - '*.md' - - LICENSE - - '.azuredevops/**' - - '.nuget/*' - pull_request: - branches: "main" - paths-ignore: - - '*.md' - - LICENSE - - '.azuredevops/**' - - '.nuget/*' - -permissions: - contents: read - -jobs: - build: - runs-on: windows-2022 - - strategy: - fail-fast: false - - matrix: - vs: [2019, 2022] - build_type: [Debug, Release] - platformx: [Win32, x64] - - steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0 - - - name: Build - working-directory: ${{ github.workspace }} - run: > - msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platformx }} - Effects11_${{ matrix.vs }}_Win10.sln - - - if: (matrix.vs == '2022' && matrix.platformx != 'Win32') - name: 'Build (UWP) x64' - working-directory: ${{ github.workspace }} - run: > - msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platformx }} - Effects11_Windows10.sln - - - if: (matrix.vs == '2022' && matrix.platformx == 'Win32') - name: 'Build (UWP) x86' - working-directory: ${{ github.workspace }} - run: > - msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=x86 - Effects11_Windows10.sln +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# +# http://go.microsoft.com/fwlink/?LinkId=271568 + +name: MSBuild + +on: + push: + branches: "main" + paths-ignore: + - '*.md' + - LICENSE + - '.azuredevops/**' + - '.nuget/*' + pull_request: + branches: "main" + paths-ignore: + - '*.md' + - LICENSE + - '.azuredevops/**' + - '.nuget/*' + +permissions: + contents: read + +jobs: + build: + runs-on: windows-2022 + + strategy: + fail-fast: false + + matrix: + vs: [2019, 2022] + build_type: [Debug, Release] + platformx: [Win32, x64] + + steps: + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + + - name: Add MSBuild to PATH + uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # v2.0.0 + + - name: Build + working-directory: ${{ github.workspace }} + run: > + msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platformx }} + Effects11_${{ matrix.vs }}_Win10.sln + + - if: (matrix.vs == '2022' && matrix.platformx != 'Win32') + name: 'Build (UWP) x64' + working-directory: ${{ github.workspace }} + run: > + msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=${{ matrix.platformx }} + Effects11_Windows10.sln + + - if: (matrix.vs == '2022' && matrix.platformx == 'Win32') + name: 'Build (UWP) x86' + working-directory: ${{ github.workspace }} + run: > + msbuild /m /p:Configuration=${{ matrix.build_type }} /p:Platform=x86 + Effects11_Windows10.sln diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index 09f7375..82e76fe 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0 with: