Skip to content

Commit a5b3604

Browse files
committed
Merge branch 'main' into feat/pin-api-kubo
2 parents f8bb44b + c9b7aa4 commit a5b3604

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121

2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
24-
- name: Install .NET 6 SDK
24+
- name: Install .NET SDK
2525
uses: actions/setup-dotnet@v4
2626
with:
27-
dotnet-version: '6.0.201'
27+
dotnet-version: '9.0.x'
2828

2929
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030
- name: Checkout Repository

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,15 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- name: Setup .NET
15+
16+
- name: Install .NET SDK
1617
uses: actions/setup-dotnet@v4
1718
with:
18-
dotnet-version: 6.0.x
19+
dotnet-version: '9.0.x'
20+
1921
- name: Restore dependencies
2022
run: dotnet restore
23+
2124
- name: Build
2225
run: dotnet build --no-restore -p:Configuration=Release
2326

test/IpfsHttpClientTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0</TargetFrameworks>
5-
<LangVersion>12.0</LangVersion>
4+
<TargetFrameworks>net9.0</TargetFrameworks>
5+
<LangVersion>13.0</LangVersion>
66

77
<IsPackable>false</IsPackable>
88
<DebugType>full</DebugType>

0 commit comments

Comments
 (0)