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