From 385d223938c4ba703ddb532a09cf35564d896292 Mon Sep 17 00:00:00 2001 From: Steve Desmond Date: Tue, 19 Nov 2024 12:32:45 -0500 Subject: [PATCH] Upgrade to .NET 9 --- .github/workflows/CI.yml | 2 +- .github/workflows/CodeQL.yml | 2 +- .github/workflows/Sonar.yml | 2 +- .github/workflows/nuget.yml | 2 +- README.md | 2 +- src/GitHubLabelSync.csproj | 2 +- test/GitHubLabelSync.Tests.csproj | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f0ce333..a155a29 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Restore run: dotnet restore diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml index aed6d07..3d014d7 100644 --- a/.github/workflows/CodeQL.yml +++ b/.github/workflows/CodeQL.yml @@ -53,7 +53,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) diff --git a/.github/workflows/Sonar.yml b/.github/workflows/Sonar.yml index 27874ce..3f0da3a 100644 --- a/.github/workflows/Sonar.yml +++ b/.github/workflows/Sonar.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Install Java uses: actions/setup-java@v4 diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index cb74a4e..28cc94b 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Run tests run: dotnet test diff --git a/README.md b/README.md index 7b307cc..9ab45b3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Synchronize GitHub issue labels across repositories ## Requirements -- .NET 8 SDK +- .NET SDK ## Installation diff --git a/src/GitHubLabelSync.csproj b/src/GitHubLabelSync.csproj index 52acb00..8e7a9d6 100644 --- a/src/GitHubLabelSync.csproj +++ b/src/GitHubLabelSync.csproj @@ -4,7 +4,7 @@ Exe true sync-labels - net8.0 + net9.0 Synchronize GitHub issue labels across repositories ecoAPM LLC ecoAPM LLC diff --git a/test/GitHubLabelSync.Tests.csproj b/test/GitHubLabelSync.Tests.csproj index 3e9c459..a888a05 100644 --- a/test/GitHubLabelSync.Tests.csproj +++ b/test/GitHubLabelSync.Tests.csproj @@ -1,11 +1,11 @@ - net8.0 + net9.0 enable enable - +