Skip to content

Commit d3d2768

Browse files
committed
Updated .NET SDK to 7.0.401
1 parent 01a3bf0 commit d3d2768

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/publish_ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727

2828
- name: Install .NET Core
2929
uses: actions/setup-dotnet@v3
30+
with:
31+
dotnet-version: 7.0.401
3032

3133
- name: Add the GitHub source
3234
run: dotnet nuget add source --username USERNAME --password ${{secrets.GITHUB_TOKEN}} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/fsprojects/index.json"

.github/workflows/publish_release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929

3030
- name: Install .NET Core
3131
uses: actions/setup-dotnet@v3
32+
with:
33+
dotnet-version: 7.0.401
3234

3335
- name: Install local tools
3436
run: dotnet tool restore

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macOS-latest]
20-
dotnet: [7.0.306]
20+
dotnet: [7.0.401]
2121
runs-on: ${{ matrix.os }}
2222

2323
steps:

build/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ execContext
2525
|> Fake.Core.Context.setExecutionContext
2626

2727
module DotNetCli =
28-
let setVersion (o: DotNet.Options) = { o with Version = Some "7.0.306" }
28+
let setVersion (o: DotNet.Options) = { o with Version = Some "7.0.401" }
2929
let setRestoreOptions (o: DotNet.RestoreOptions)= o.WithCommon setVersion
3030

3131
let configurationString = Environment.environVarOrDefault "CONFIGURATION" "Release"

0 commit comments

Comments
 (0)