Skip to content

Commit 48d1d1d

Browse files
Bump Npgsql from 4.1.3.1 to 8.0.3 in /test/ProjNet.Tests (#117)
* Bump Npgsql from 4.1.3.1 to 8.0.3 in /test/ProjNet.Tests Bumps [Npgsql](https://github.com/npgsql/npgsql) from 4.1.3.1 to 8.0.3. - [Release notes](https://github.com/npgsql/npgsql/releases) - [Commits](npgsql/npgsql@v4.1.3.1...v8.0.3) --- updated-dependencies: - dependency-name: Npgsql dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Update full-ci.yml * Update full-ci.yml * Update full-ci.yml * Update ProjNET.Tests.csproj --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Felix Obermaier <[email protected]>
1 parent c38d90c commit 48d1d1d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/full-ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Get source
1616
uses: actions/checkout@v2
1717

18-
- name: Setup .NET Core 3.1
19-
uses: actions/setup-dotnet@v1
18+
- name: Setup .NET Core 6
19+
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 3.1.406
21+
dotnet-version: '6.x'
2222

2323
- name: Build
2424
run: dotnet build -c Release -v minimal -p:WarningLevel=3
@@ -44,10 +44,10 @@ jobs:
4444
if: github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')
4545

4646
steps:
47-
- name: Setup .NET Core 3.1
48-
uses: actions/setup-dotnet@v1
47+
- name: Setup .NET Core 6
48+
uses: actions/setup-dotnet@v4
4949
with:
50-
dotnet-version: 3.1.406
50+
dotnet-version: '6.x'
5151

5252
- name: Download Package Files
5353
uses: actions/download-artifact@v2
@@ -69,10 +69,10 @@ jobs:
6969
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
7070

7171
steps:
72-
- name: Setup .NET Core 3.1
73-
uses: actions/setup-dotnet@v1
72+
- name: Setup .NET Core 6
73+
uses: actions/setup-dotnet@v4
7474
with:
75-
dotnet-version: 3.1.406
75+
dotnet-version: '6.x'
7676

7777
- name: Download Package Files
7878
uses: actions/download-artifact@v2

test/ProjNet.Tests/ProjNET.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33

44
<PropertyGroup>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net6</TargetFramework>
66
<SignAssembly>true</SignAssembly>
77
<NoWarn>1701;1702;1591</NoWarn>
88
</PropertyGroup>
99

1010
<ItemGroup>
1111
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
12-
<PackageReference Include="Npgsql" Version="4.1.3.1" />
12+
<PackageReference Include="Npgsql" Version="8.0.3" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

0 commit comments

Comments
 (0)