Skip to content

Commit e4c5e05

Browse files
committed
CI fix
1 parent a6b0955 commit e4c5e05

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ on:
2727
required: false
2828

2929
jobs:
30-
ubuntu-22_04:
31-
name: ubuntu-22_04
32-
runs-on: ubuntu-22.04
30+
ubuntu-24_04:
31+
name: ubuntu-24_04
32+
runs-on: ubuntu-24.04
3333
steps:
3434
- uses: actions/checkout@v4
3535
with:
3636
fetch-depth: 0
37+
- uses: actions/setup-dotnet@v5
38+
with:
39+
dotnet-version: '10.0.x'
3740
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
3841
uses: actions/cache@v4
3942
with:
@@ -85,4 +88,4 @@ jobs:
8588
uses: actions/upload-artifact@v4
8689
with:
8790
name: linux-x64_framework-dependent.tar.gz.sha256
88-
path: _output/artifacts/linux-x64_framework-dependent.tar.gz.sha256
91+
path: _output/artifacts/linux-x64_framework-dependent.tar.gz.sha256

src/01-Build/NukeBuild/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[GitHubActions(
1818
"ci",
19-
GitHubActionsImage.Ubuntu2204, // Note that on later versions, .Net 9 is not (yet) available.
19+
GitHubActionsImage.Ubuntu2404,
2020
FetchDepth = 0,
2121
OnPushBranches = ["master"],
2222
OnWorkflowDispatchOptionalInputs = ["name"],

0 commit comments

Comments
 (0)