Skip to content

Commit 24902f1

Browse files
Copilotxperiandri
andauthored
Pin CI workflows and build script to .NET SDK 10.0.300 (#578)
Co-authored-by: xperiandri <2365592+xperiandri@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Andrii Chebukin <XperiAndri@Outlook.com>
1 parent 022d633 commit 24902f1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/publish-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
env:
99
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
1010
DOTNET_NOLOGO: true
11-
DOTNET_SDK_VERSION: 10.0.202
11+
DOTNET_SDK_VERSION: 10.0.300
1212

1313
jobs:
1414
publish:

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
1010
DOTNET_NOLOGO: true
1111
SLEEP_DURATION: 60
12-
DOTNET_SDK_VERSION: 10.0.202
12+
DOTNET_SDK_VERSION: 10.0.300
1313

1414
jobs:
1515
publish:

.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-22.04, windows-latest, macOS-latest]
24-
dotnet: [10.0.202]
24+
dotnet: [10.0.300]
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
@@ -30,7 +30,7 @@ let ctx = Context.forceFakeContext ()
3030
let embedAll = ctx.Arguments |> List.exists (fun arg -> arg = BuildArguments.EmbedAll)
3131

3232
module DotNetCli =
33-
let setVersion (o : DotNet.Options) = { o with Version = Some "10.0.202" }
33+
let setVersion (o : DotNet.Options) = { o with Version = Some "10.0.300" }
3434
let setRestoreOptions (o : DotNet.RestoreOptions) = o.WithCommon setVersion
3535

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

0 commit comments

Comments
 (0)