diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index d4b1251..c44e04d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -70,13 +70,12 @@ jobs: # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs # queries: security-extended,security-and-quality - - name: Setup .NET 6.0 + - name: Setup .NET 8.0 uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0.427 + dotnet-version: 8.0.403 - - if: matrix.build-mode == 'manual' - shell: bash + - shell: bash run: dotnet build --configuration Release -v:m - name: Perform CodeQL Analysis diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml index d18e067..5de0c73 100644 --- a/.github/workflows/dotnetcore.yml +++ b/.github/workflows/dotnetcore.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - - name: Setup .NET 6.0 - uses: actions/setup-dotnet@v1.8.2 + - name: Setup .NET 8.0 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0.100 + dotnet-version: 8.0.403 - - name: Build and Test with dotnet - run: NONET461=true dotnet test --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package' + - shell: bash + run: dotnet build --configuration Release -v:m