From 58ec0e0fb93a0c53755d9d705b04864542805115 Mon Sep 17 00:00:00 2001 From: DBS Date: Tue, 8 Apr 2025 11:53:54 -0500 Subject: [PATCH 1/5] update dotnet version to 9.0 --- Quali.Torque.Cli/Quali.Torque.Cli.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Quali.Torque.Cli/Quali.Torque.Cli.csproj b/Quali.Torque.Cli/Quali.Torque.Cli.csproj index 80a66ce..f9aedd1 100644 --- a/Quali.Torque.Cli/Quali.Torque.Cli.csproj +++ b/Quali.Torque.Cli/Quali.Torque.Cli.csproj @@ -4,7 +4,7 @@ Exe true torque-cli - net7.0 + net9.0 enable disable torque-cli @@ -13,11 +13,11 @@ - - - - - + + + + + From 3f6d1d5450db055dcbfc763f66afabe90232b3a8 Mon Sep 17 00:00:00 2001 From: DBS Date: Tue, 8 Apr 2025 11:57:43 -0500 Subject: [PATCH 2/5] chore: update .NET version to 9.0 in workflow files --- .github/workflows/binaries-build.yml | 2 +- .github/workflows/dotnet.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/binaries-build.yml b/.github/workflows/binaries-build.yml index 5e940f6..07f0aac 100644 --- a/.github/workflows/binaries-build.yml +++ b/.github/workflows/binaries-build.yml @@ -14,7 +14,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 9.0.x - name: Publish run: | diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 27d679a..e0c0049 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 9.0.x - name: Restore dependencies run: dotnet restore - name: Build From 49d4c1c60c0b02be62dd0f8e28f75e80ae709093 Mon Sep 17 00:00:00 2001 From: DBS Date: Tue, 8 Apr 2025 11:59:08 -0500 Subject: [PATCH 3/5] chore: update target framework to .NET 9.0 in unit test project --- Quali.Torque.Cli.Tests.Unit/Quali.Torque.Cli.Tests.Unit.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quali.Torque.Cli.Tests.Unit/Quali.Torque.Cli.Tests.Unit.csproj b/Quali.Torque.Cli.Tests.Unit/Quali.Torque.Cli.Tests.Unit.csproj index db16da5..a419c86 100644 --- a/Quali.Torque.Cli.Tests.Unit/Quali.Torque.Cli.Tests.Unit.csproj +++ b/Quali.Torque.Cli.Tests.Unit/Quali.Torque.Cli.Tests.Unit.csproj @@ -1,7 +1,7 @@ - net7.0 + net9.0 enable disable From ef04513240f4781a5dc59163772b13b3bbd75be2 Mon Sep 17 00:00:00 2001 From: DBS Date: Wed, 9 Apr 2025 00:54:39 -0500 Subject: [PATCH 4/5] chore: update Dockerfile to use .NET 9.0 SDK and runtime --- Quali.Torque.Cli/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quali.Torque.Cli/Dockerfile b/Quali.Torque.Cli/Dockerfile index ff834eb..e1d21b7 100644 --- a/Quali.Torque.Cli/Dockerfile +++ b/Quali.Torque.Cli/Dockerfile @@ -1,5 +1,5 @@ # The version is pinned because of a bug (https://github.com/dotnet/sdk/issues/28971#issuecomment-1309328718) -FROM mcr.microsoft.com/dotnet/sdk:7.0.100-preview.2 AS build-env +FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env LABEL org.opencontainers.image.source="https://github.com/QualiNext/torque-cli" WORKDIR /Quali.Torque.Cli @@ -14,7 +14,7 @@ RUN dotnet publish -c Release -o out # RUN dotnet publish "./Quali.Torque.Cli/Quali.Torque.Cli.csproj" -c Release -o out # Build runtime image -FROM mcr.microsoft.com/dotnet/runtime:7.0 +FROM mcr.microsoft.com/dotnet/runtime:9.0 LABEL org.opencontainers.image.source="https://github.com/QualiNext/torque-cli" WORKDIR /Quali.Torque.Cli COPY --from=build-env /Quali.Torque.Cli/out . From ececf440c0b3bf899718e134c7fed3f652213a6b Mon Sep 17 00:00:00 2001 From: DBS Date: Wed, 9 Apr 2025 00:56:17 -0500 Subject: [PATCH 5/5] chore: update checkout action to v3 in release workflow --- .github/workflows/release_nuget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_nuget.yml b/.github/workflows/release_nuget.yml index 1109459..9c1fbf3 100644 --- a/.github/workflows/release_nuget.yml +++ b/.github/workflows/release_nuget.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Verify commit exists in origin/master run: |