File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 31
31
32
32
- name : Add version to global.json
33
33
run : |
34
- $version = "8.0.400 "
34
+ $version = "8.0.403 "
35
35
$globalJsonPath = "global.json"
36
36
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
37
37
if ($null -eq $globalJson.sdk.version) {
45
45
- name : Install .NET Core
46
46
uses : actions/setup-dotnet@v4
47
47
with :
48
- dotnet-version : 8.0.400
48
+ dotnet-version : 8.0.403
49
49
50
50
- name : Add the GitHub source
51
51
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"
Original file line number Diff line number Diff line change 34
34
35
35
- name : Add version to global.json
36
36
run : |
37
- $version = "8.0.400 "
37
+ $version = "8.0.403 "
38
38
$globalJsonPath = "global.json"
39
39
$globalJson = Get-Content -Raw -Path $globalJsonPath | ConvertFrom-Json
40
40
if ($null -eq $globalJson.sdk.version) {
48
48
- name : Install .NET Core
49
49
uses : actions/setup-dotnet@v4
50
50
with :
51
- dotnet-version : 8.0.400
51
+ dotnet-version : 8.0.403
52
52
53
53
- name : Install local tools
54
54
run : dotnet tool restore
Original file line number Diff line number Diff line change 21
21
fail-fast : false
22
22
matrix :
23
23
os : [ubuntu-latest, windows-latest, macOS-latest]
24
- dotnet : [8.0.400 ]
24
+ dotnet : [8.0.403 ]
25
25
runs-on : ${{ matrix.os }}
26
26
27
27
steps :
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ let embedAll = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.Emb
34
34
let ciBuild = ctx.Arguments |> List.exists ( fun arg -> arg = BuildArguments.CIBuild)
35
35
36
36
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 " }
38
38
let setRestoreOptions ( o : DotNet.RestoreOptions ) = o.WithCommon setVersion
39
39
40
40
let configurationString = Environment.environVarOrDefault " CONFIGURATION" " Release"
You can’t perform that action at this time.
0 commit comments