File tree 2 files changed +12
-9
lines changed
2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -11,20 +11,20 @@ jobs:
11
11
DOTNET_NOLOGO : true
12
12
steps :
13
13
- name : Clone source
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0
17
17
submodules : true
18
18
19
19
- name : Add MSBuild to PATH
20
- uses : microsoft/setup-msbuild@v1
20
+ uses : microsoft/setup-msbuild@v2
21
21
22
22
- name : Replace global.json
23
23
run : cp .github/workflows/.global.json global.json
24
24
shell : bash
25
25
26
26
- name : Install .NET SDK
27
- uses : actions/setup-dotnet@v3
27
+ uses : actions/setup-dotnet@v4
28
28
with :
29
29
dotnet-version : |
30
30
6.0.x
37
37
run : dotnet run --project tools/builder --no-launch-profile -- BuildAll --timing
38
38
39
39
- name : " Upload artifact: test"
40
- uses : actions/upload-artifact@v3
40
+ uses : actions/upload-artifact@v4
41
41
with :
42
42
name : test
43
43
path : artifacts/test
44
+ compression-level : 9
44
45
if : always()
Original file line number Diff line number Diff line change @@ -14,20 +14,20 @@ jobs:
14
14
DOTNET_NOLOGO : true
15
15
steps :
16
16
- name : Clone source
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
with :
19
19
fetch-depth : 0
20
20
submodules : true
21
21
22
22
- name : Add MSBuild to PATH
23
- uses : microsoft/setup-msbuild@v1
23
+ uses : microsoft/setup-msbuild@v2
24
24
25
25
- name : Replace global.json
26
26
run : cp .github/workflows/.global.json global.json
27
27
shell : bash
28
28
29
29
- name : Install .NET SDK
30
- uses : actions/setup-dotnet@v3
30
+ uses : actions/setup-dotnet@v4
31
31
with :
32
32
dotnet-version : |
33
33
6.0.x
@@ -50,15 +50,17 @@ jobs:
50
50
run : dotnet run --project tools/builder --no-launch-profile -- BuildAll PublishPackages --timing
51
51
52
52
- name : " Upload artifact: test"
53
- uses : actions/upload-artifact@v3
53
+ uses : actions/upload-artifact@v4
54
54
with :
55
55
name : test
56
56
path : artifacts/test
57
+ compression-level : 9
57
58
if : always()
58
59
59
60
- name : " Upload artifact: packages"
60
- uses : actions/upload-artifact@v3
61
+ uses : actions/upload-artifact@v4
61
62
with :
62
63
name : packages
63
64
path : artifacts/packages
65
+ compression-level : 0
64
66
if : always()
You can’t perform that action at this time.
0 commit comments