From 778f09b1c56570553479b36d7f02693fb35db91c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 12:34:20 +0000 Subject: [PATCH] build(deps): bump actions/setup-dotnet from 5 to 6 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 5 to 6. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c133b1..5eaa7b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v6 with: { fetch-depth: 0 } - - uses: actions/setup-dotnet@v5 + - uses: actions/setup-dotnet@v6 with: { dotnet-version: '10.0.x' } - run: dotnet restore - run: dotnet build --no-restore --configuration Release @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/download-artifact@v8 with: { name: nuget, path: ./artifacts } - - uses: actions/setup-dotnet@v5 + - uses: actions/setup-dotnet@v6 with: { dotnet-version: '10.0.x' } - uses: NuGet/login@v1 id: login diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8f01684..a976ac1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,7 +13,7 @@ jobs: with: { fetch-depth: 0 } - uses: github/codeql-action/init@v4 with: { languages: csharp } - - uses: actions/setup-dotnet@v5 + - uses: actions/setup-dotnet@v6 with: { dotnet-version: '10.0.x' } - run: dotnet restore ScienceLogic.Em7.Api.slnx - run: dotnet build ScienceLogic.Em7.Api.slnx --no-restore --configuration Release