Skip to content

Commit 7cbc9fd

Browse files
committed
Updated SDK to 8.0.403
1 parent ef51916 commit 7cbc9fd

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/publish_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Add version to global.json
3333
run: |
34-
$version = "8.0.400"
34+
$version = "8.0.403"
3535
$globalJsonPath = "global.json"
3636
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
3737
if ($null -eq $globalJson.sdk.version) {
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install .NET Core
4646
uses: actions/setup-dotnet@v4
4747
with:
48-
dotnet-version: 8.0.400
48+
dotnet-version: 8.0.403
4949

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

.github/workflows/publish_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Add version to global.json
3636
run: |
37-
$version = "8.0.400"
37+
$version = "8.0.403"
3838
$globalJsonPath = "global.json"
3939
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
4040
if ($null -eq $globalJson.sdk.version) {
@@ -48,7 +48,7 @@ jobs:
4848
- name: Install .NET Core
4949
uses: actions/setup-dotnet@v4
5050
with:
51-
dotnet-version: 8.0.400
51+
dotnet-version: 8.0.403
5252

5353
- name: Install local tools
5454
run: dotnet tool restore

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macOS-latest]
24-
dotnet: [8.0.400]
24+
dotnet: [8.0.403]
2525
runs-on: ${{ matrix.os }}
2626

2727
steps:

build/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let embedAll = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.Emb
3434
let ciBuild = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.CIBuild)
3535

3636
module DotNetCli =
37-
let setVersion (o : DotNet.Options) = { o with Version = Some "8.0.400" }
37+
let setVersion (o : DotNet.Options) = { o with Version = Some "8.0.403" }
3838
let setRestoreOptions (o : DotNet.RestoreOptions) = o.WithCommon setVersion
3939

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

0 commit comments

Comments
 (0)