Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing of dotnet 3.1 sdk from ci #988

Closed
12 changes: 2 additions & 10 deletions .github/workflows/buildtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup dotnet SDK 3.1
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.1.x'
fetch-depth: 0
- name: Setup dotnet SDK 5
uses: actions/setup-dotnet@v2
with:
Expand Down Expand Up @@ -61,11 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup dotnet SDK 3.1
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.1.x'
fetch-depth: 0
- name: Setup dotnet SDK 5
uses: actions/setup-dotnet@v2
with:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup dotnet SDK 3.1
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.1.x'

- name: Setup dotnet SDK 5
uses: actions/setup-dotnet@v2
with:
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/draft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ jobs:
with:
fetch-depth: 0

- name: .NET Core 3.1.x SDK
uses: actions/setup-dotnet@v2
with:
dotnet-version: 3.1.x

- name: .NET 5.x SDK
uses: actions/setup-dotnet@v2
with:
Expand All @@ -44,4 +39,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create -d --generate-notes v$env:NBGV_NuGetPackageVersion
gh release create -d --generate-notes v$env:NBGV_NuGetPackageVersion
5 changes: 0 additions & 5 deletions .github/workflows/nuget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ jobs:
with:
fetch-depth: 0

- name: .NET Core 3.1.x SDK
uses: actions/setup-dotnet@v2
with:
dotnet-version: 3.1.x

- name: .NET 5.x SDK
uses: actions/setup-dotnet@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion tests/E2E.Tests/E2E.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<IsPackable>false</IsPackable>
<SignAssembly>true</SignAssembly>
<RootNamespace>k8s.E2E</RootNamespace>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/KubernetesClient.Tests/KubernetesClient.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<IsPackable>false</IsPackable>
<RootNamespace>k8s.Tests</RootNamespace>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down