From b29bf288d01f4212fee840e846f7cf9c140be943 Mon Sep 17 00:00:00 2001 From: Andreas Dorfer <41114919+Andreas-Dorfer@users.noreply.github.com> Date: Sat, 6 Jan 2024 18:19:33 +0100 Subject: [PATCH] workflows -> net 8 (#40) --- .github/workflows/pack-arbitraries.yml | 2 +- .github/workflows/pack-base-types.yml | 2 +- .github/workflows/pack-core.yml | 2 +- .github/workflows/pack-efcore.yml | 2 +- .github/workflows/pack-fsharp.yml | 2 +- .github/workflows/pack-generator.yml | 2 +- .github/workflows/pack-model-binders.yml | 2 +- .github/workflows/pack-open-api.yml | 2 +- .github/workflows/solution-build.yml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pack-arbitraries.yml b/.github/workflows/pack-arbitraries.yml index 616a5d0..d1c098f 100644 --- a/.github/workflows/pack-arbitraries.yml +++ b/.github/workflows/pack-arbitraries.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.Arbitraries/AD.BaseTypes.Arbitraries.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-base-types.yml b/.github/workflows/pack-base-types.yml index d53f5d3..38aeb31 100644 --- a/.github/workflows/pack-base-types.yml +++ b/.github/workflows/pack-base-types.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes/AD.BaseTypes.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-core.yml b/.github/workflows/pack-core.yml index e5ac1d0..46b5fa0 100644 --- a/.github/workflows/pack-core.yml +++ b/.github/workflows/pack-core.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.Core/AD.BaseTypes.Core.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-efcore.yml b/.github/workflows/pack-efcore.yml index a98582d..031cf2e 100644 --- a/.github/workflows/pack-efcore.yml +++ b/.github/workflows/pack-efcore.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.EFCore/AD.BaseTypes.EFCore.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-fsharp.yml b/.github/workflows/pack-fsharp.yml index 9336a45..89aaf86 100644 --- a/.github/workflows/pack-fsharp.yml +++ b/.github/workflows/pack-fsharp.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.FSharp/AD.BaseTypes.FSharp.fsproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-generator.yml b/.github/workflows/pack-generator.yml index db0b947..14f7fc4 100644 --- a/.github/workflows/pack-generator.yml +++ b/.github/workflows/pack-generator.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.Generator/AD.BaseTypes.Generator.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-model-binders.yml b/.github/workflows/pack-model-binders.yml index f49252f..e58e61c 100644 --- a/.github/workflows/pack-model-binders.yml +++ b/.github/workflows/pack-model-binders.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.ModelBinders/AD.BaseTypes.ModelBinders.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/pack-open-api.yml b/.github/workflows/pack-open-api.yml index d0528ba..c81d09f 100644 --- a/.github/workflows/pack-open-api.yml +++ b/.github/workflows/pack-open-api.yml @@ -16,7 +16,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Pack run: dotnet pack ./src/AD.BaseTypes.OpenApiSchemas/AD.BaseTypes.OpenApiSchemas.csproj --configuration Release --output out - uses: actions/upload-artifact@v3 diff --git a/.github/workflows/solution-build.yml b/.github/workflows/solution-build.yml index 5a20395..d9ac09e 100644 --- a/.github/workflows/solution-build.yml +++ b/.github/workflows/solution-build.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore ./src - name: Build