Skip to content

Commit e966033

Browse files
authored
Merge pull request #367 from cake-contrib/renovate/ubuntu-24.x
Update dependency ubuntu to v24
2 parents 9ff4d83 + 2f8f78a commit e966033

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [ windows-2022, ubuntu-22.04, macos-13 ]
22+
os: [ windows-2022, ubuntu-24.04, macos-13 ]
2323

2424
env:
2525
AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
analyze:
2020
name: Analyze
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222

2323
strategy:
2424
fail-fast: false

.github/workflows/publishDocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
cake:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- name: checkout

recipe.cake

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ BuildParameters.SetParameters(
1313
shouldUseDeterministicBuilds: true,
1414
shouldRunCodecov: false,
1515
preferredBuildProviderType: BuildProviderType.GitHubActions,
16-
preferredBuildAgentOperatingSystem: PlatformFamily.Linux);
16+
preferredBuildAgentOperatingSystem: PlatformFamily.Linux,
17+
shouldUseTargetFrameworkPath: false);
1718

1819
BuildParameters.PrintParameters(Context);
1920

2021
ToolSettings.SetToolSettings(context: Context);
2122
ToolSettings.SetToolPreprocessorDirectives(
22-
gitReleaseManagerGlobalTool: "#tool dotnet:?package=GitReleaseManager.Tool&version=0.18.0");
23+
gitReleaseManagerGlobalTool: "#tool dotnet:?package=GitReleaseManager.Tool&version=0.18.0",
24+
gitVersionGlobalTool: "#tool dotnet:?package=GitVersion.Tool&version=5.12.0");
2325

2426
Build.RunDotNetCore();

0 commit comments

Comments
 (0)