diff --git a/.github/workflows/auto-pr-from-main.yml b/.github/workflows/auto-pr-from-main.yml index d8b3fb9..7b4b412 100644 --- a/.github/workflows/auto-pr-from-main.yml +++ b/.github/workflows/auto-pr-from-main.yml @@ -29,7 +29,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: � Check for NuGet Updates run: | @@ -147,7 +147,7 @@ jobs: - name: �️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: 🔒 Check for Security Updates run: | diff --git a/.github/workflows/ci-build-test.yml b/.github/workflows/ci-build-test.yml index fddd672..f110e1d 100644 --- a/.github/workflows/ci-build-test.yml +++ b/.github/workflows/ci-build-test.yml @@ -12,12 +12,12 @@ on: types: [opened, synchronize, reopened, closed] env: - DOTNET_VERSION: "8.0.x" + DOTNET_VERSION: "10.0.x" jobs: # Build Metar Decoder build-metar: - name: Build Metar Decoder (.NET 8) + name: Build Metar Decoder (.NET 10) runs-on: ubuntu-latest steps: @@ -58,7 +58,7 @@ jobs: --results-directory TestResults \ --collect:"XPlat Code Coverage" \ --verbosity normal \ - --framework net8.0 + --framework net10.0 - name: Run TAF Tests run: | @@ -69,7 +69,7 @@ jobs: --results-directory TestResults \ --collect:"XPlat Code Coverage" \ --verbosity normal \ - --framework net8.0 + --framework net10.0 - name: Upload Test Results uses: actions/upload-artifact@v4 diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index bdc8bad..9adafd1 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -61,7 +61,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: ☕ Set up JDK 17 uses: actions/setup-java@v5 @@ -124,7 +124,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: 🔧 Restore Dependencies run: dotnet restore MetarDecoder.sln --ignore-failed-sources @@ -203,7 +203,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: 🔧 Restore Dependencies run: dotnet restore MetarDecoder.sln --ignore-failed-sources diff --git a/.github/workflows/publish-all.yml b/.github/workflows/publish-all.yml index 2697edd..91ab12b 100644 --- a/.github/workflows/publish-all.yml +++ b/.github/workflows/publish-all.yml @@ -59,7 +59,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: 🔧 Clear NuGet cache run: dotnet nuget locals all --clear diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml index 3efbe49..65bf84e 100644 --- a/.github/workflows/security-scan.yml +++ b/.github/workflows/security-scan.yml @@ -54,7 +54,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: 🔧 Restore Dependencies run: dotnet restore MetarDecoder.sln --ignore-failed-sources @@ -89,7 +89,7 @@ jobs: - name: 🗄️ Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: "8.0.x" + dotnet-version: "10.0.x" - name: ☕ Set up JDK 17 uses: actions/setup-java@v5