File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " Test for actions/checkout@v4.1.4"
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ test1 :
8
+ name : " ubuntu-latest + actions/checkout@v4.1.4"
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4.1.4
12
+ with :
13
+ sparse-checkout-cone-mode : true
14
+ fetch-depth : 1
15
+ fetch-tags : false
16
+ - name : " Print .git/config"
17
+ run : cat .git/config
18
+ - name : " dotnet build"
19
+ run : dotnet build
20
+ test2 :
21
+ name : " actions/runner:2.316.0 + actions/checkout@v4.1.4"
22
+ runs-on : ubuntu-latest
23
+ container : ghcr.io/actions/actions-runner:2.316.0
24
+ steps :
25
+ - uses : actions/checkout@v4.1.4
26
+ with :
27
+ sparse-checkout-cone-mode : true
28
+ fetch-depth : 1
29
+ fetch-tags : false
30
+ - name : " Print .git/config"
31
+ run : cat .git/config
32
+ - uses : actions/setup-dotnet@v4
33
+ with :
34
+ dotnet-version : ' 8.0.204'
35
+ - name : " dotnet build"
36
+ run : dotnet build
37
+ test3 :
38
+ name : " actions/runner:2.316.0 + actions/checkout@v4.1.1"
39
+ runs-on : ubuntu-latest
40
+ container : ghcr.io/actions/actions-runner:2.316.0
41
+ steps :
42
+ - uses : actions/checkout@v4.1.1
43
+ with :
44
+ sparse-checkout-cone-mode : true
45
+ fetch-depth : 1
46
+ fetch-tags : false
47
+ - name : " Print .git/config"
48
+ run : cat .git/config
49
+ - uses : actions/setup-dotnet@v4
50
+ with :
51
+ dotnet-version : ' 8.0.204'
52
+ - name : " dotnet build"
53
+ run : dotnet build
You can’t perform that action at this time.
0 commit comments