From ebb4710f63d41f5481b61709fae7daa849ff7256 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 04:12:08 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 88 ++++++++++++++++++++-------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7bef74d..084cb08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,44 +1,44 @@ -name: CI - -on: - pull_request: - branches: [master] - -env: - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true - BUILD_CONFIGURATION: Release - BUILD_PLATFORM: x64 - -jobs: - build-and-test: - name: Build & Test - runs-on: windows-latest - - steps: - - uses: actions/checkout@v6 - - - name: Setup .NET 10 - uses: actions/setup-dotnet@v5 - with: - dotnet-version: '10.0.x' - - - name: Restore - run: dotnet restore ai-dev-net.slnx -p:Configuration=${{ env.BUILD_CONFIGURATION }} -p:Platform="${{ env.BUILD_PLATFORM }}" - - - name: Build - run: dotnet build ai-dev-net.slnx --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore -p:Platform="${{ env.BUILD_PLATFORM }}" - - - name: Unit Tests - run: > - dotnet test ai-dev-net.tests.unit/ai-dev-net.tests.unit.csproj - --configuration ${{ env.BUILD_CONFIGURATION }} - --no-build - --logger trx - --results-directory TestResults - - - name: Upload test results - if: always() - uses: actions/upload-artifact@v7 - with: - name: unit-test-results - path: TestResults/*.trx +name: CI + +on: + pull_request: + branches: [master] + +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + BUILD_CONFIGURATION: Release + BUILD_PLATFORM: x64 + +jobs: + build-and-test: + name: Build & Test + runs-on: windows-latest + + steps: + - uses: actions/checkout@v7 + + - name: Setup .NET 10 + uses: actions/setup-dotnet@v5 + with: + dotnet-version: '10.0.x' + + - name: Restore + run: dotnet restore ai-dev-net.slnx -p:Configuration=${{ env.BUILD_CONFIGURATION }} -p:Platform="${{ env.BUILD_PLATFORM }}" + + - name: Build + run: dotnet build ai-dev-net.slnx --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore -p:Platform="${{ env.BUILD_PLATFORM }}" + + - name: Unit Tests + run: > + dotnet test ai-dev-net.tests.unit/ai-dev-net.tests.unit.csproj + --configuration ${{ env.BUILD_CONFIGURATION }} + --no-build + --logger trx + --results-directory TestResults + + - name: Upload test results + if: always() + uses: actions/upload-artifact@v7 + with: + name: unit-test-results + path: TestResults/*.trx