File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 19
19
runs-on : ${{ matrix.os }}
20
20
strategy :
21
21
matrix :
22
- os : [windows-latest, macos-13, ubuntu-latest ]
22
+ os : [windows-2022, ubuntu-24.04 ]
23
23
24
24
env :
25
25
AZURE_PASSWORD : ${{ secrets.AZURE_PASSWORD }}
57
57
3.1
58
58
5.0
59
59
6.0
60
- 7.0
61
- 8.0
60
+ 9.0
62
61
63
62
- name : Cache Tools
64
63
uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
@@ -67,12 +66,12 @@ jobs:
67
66
key : ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
68
67
69
68
- name : Build project
70
- uses : cake-build/cake-action@1223b6fa067ad192159f43b50cd4f953679b0934 # v2.0.0
69
+ uses : cake-build/cake-action@5167c3f6a9e15c76f009de2acdfb9488552bc0b9 # v3
71
70
with :
72
71
script-path : recipe.cake
73
72
target : CI
74
73
verbosity : Diagnostic
75
- cake-version : 1.3.0
74
+ cake-version : tool-manifest
76
75
77
76
# currently, Cake.Recipe does not upload artifacts when run on gh-actions
78
77
- name : Upload Issues
Original file line number Diff line number Diff line change 33
33
6.0
34
34
7.0
35
35
8.0
36
+ 9.0
36
37
37
38
- name : Cache Tools
38
39
uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
@@ -46,11 +47,11 @@ jobs:
46
47
languages : ${{ matrix.language }}
47
48
48
49
- name : Build project
49
- uses : cake-build/cake-action@1223b6fa067ad192159f43b50cd4f953679b0934 # v2.0.0
50
+ uses : cake-build/cake-action@5167c3f6a9e15c76f009de2acdfb9488552bc0b9 # v3
50
51
with :
51
52
script-path : recipe.cake
52
53
target : DotNetCore-Build
53
- cake-version : 1.3.0
54
+ cake-version : tool-manifest
54
55
55
56
- name : Perform CodeQL Analysis
56
57
uses : github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 8 .0.403 " ,
3
+ "version" : " 9 .0.300 " ,
4
4
"rollForward" : " latestFeature"
5
5
}
6
- }
6
+ }
Original file line number Diff line number Diff line change @@ -16,12 +16,16 @@ BuildParameters.SetParameters(
16
16
twitterMessage : standardNotificationMessage ,
17
17
shouldRunCodecov : false ,
18
18
preferredBuildProviderType : BuildProviderType . GitHubActions ,
19
- preferredBuildAgentOperatingSystem : PlatformFamily . Linux ) ;
19
+ preferredBuildAgentOperatingSystem : PlatformFamily . Linux ,
20
+ shouldUseTargetFrameworkPath : false ) ;
20
21
21
22
BuildParameters . PrintParameters ( Context ) ;
22
23
23
24
ToolSettings . SetToolPreprocessorDirectives (
24
- gitReleaseManagerGlobalTool : "#tool dotnet:?package=GitReleaseManager.Tool&version=0.18.0" ) ;
25
+ gitReleaseManagerGlobalTool : "#tool dotnet:?package=GitReleaseManager.Tool&version=0.18.0" ,
26
+ gitVersionGlobalTool : "#tool dotnet:?package=GitVersion.Tool&version=5.12.0" ,
27
+ reportGeneratorGlobalTool : "#tool dotnet:?package=dotnet-reportgenerator-globaltool&version=5.4.7" ,
28
+ coverallsGlobalTool : "#tool dotnet:?package=coveralls.net&version=4.0.1" ) ;
25
29
26
30
ToolSettings . SetToolSettings ( context : Context ) ;
27
31
You can’t perform that action at this time.
0 commit comments