From 11aef724a450add084fe6180a3ccb0eb136bdc42 Mon Sep 17 00:00:00 2001 From: Steve Desmond Date: Mon, 20 Nov 2023 17:01:08 -0500 Subject: [PATCH] Upgrade to .NET 8 --- .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 | 4 ++-- test/GitHubLabelSync.Tests.csproj | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d0c1498..727f5f4 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Restore run: dotnet restore diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml index 4d66430..657ef08 100644 --- a/.github/workflows/CodeQL.yml +++ b/.github/workflows/CodeQL.yml @@ -53,7 +53,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.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 f464465..95476c9 100644 --- a/.github/workflows/Sonar.yml +++ b/.github/workflows/Sonar.yml @@ -15,7 +15,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Install Sonar Scanner run: dotnet tool install --global dotnet-sonarscanner diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 8ee8530..2457756 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Run tests run: dotnet test diff --git a/README.md b/README.md index 147ede2..7b307cc 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Synchronize GitHub issue labels across repositories ## Requirements -- .NET SDK 6 +- .NET 8 SDK ## Installation diff --git a/src/GitHubLabelSync.csproj b/src/GitHubLabelSync.csproj index e2b2b0a..f29addf 100644 --- a/src/GitHubLabelSync.csproj +++ b/src/GitHubLabelSync.csproj @@ -1,10 +1,10 @@ - 2.1.2 + 3.0.0 Exe true sync-labels - net6.0 + net8.0 Synchronize GitHub issue labels across repositories ecoAPM LLC ecoAPM LLC diff --git a/test/GitHubLabelSync.Tests.csproj b/test/GitHubLabelSync.Tests.csproj index d0f3c2b..7fb043a 100644 --- a/test/GitHubLabelSync.Tests.csproj +++ b/test/GitHubLabelSync.Tests.csproj @@ -1,6 +1,6 @@ - net6.0 + net8.0 enable enable