10
10
go : ['1.17.x']
11
11
runs-on : ${{ matrix.os }}
12
12
steps :
13
- - uses : actions/checkout@v1
13
+ - uses : actions/checkout@v2
14
+ with :
15
+ fetch-depth : 0
14
16
- uses : actions/setup-ruby@v1
15
17
- uses : actions/setup-go@v2
16
18
with :
37
39
go : ['1.13.x', '1.14.x']
38
40
runs-on : ubuntu-20.04
39
41
steps :
40
- - uses : actions/checkout@v1
42
+ - uses : actions/checkout@v2
43
+ with :
44
+ fetch-depth : 0
41
45
- uses : actions/setup-go@v2
42
46
with :
43
47
go-version : ${{ matrix.go }}
46
50
name : Build on Windows
47
51
runs-on : windows-latest
48
52
steps :
49
- - uses : actions/checkout@v1
53
+ - uses : actions/checkout@v2
54
+ with :
55
+ fetch-depth : 0
50
56
- uses : actions/setup-ruby@v1
51
57
- uses : actions/setup-go@v2
52
58
with :
96
102
os : [ubuntu-20.04, macos-latest]
97
103
runs-on : ${{ matrix.os }}
98
104
steps :
99
- - uses : actions/checkout@v1
105
+ - uses : actions/checkout@v2
106
+ with :
107
+ fetch-depth : 0
100
108
- run : git clone -b master https://github.com/git/git.git "$HOME/git"
101
109
- run : script/build-git "$HOME/git"
102
110
- run : GIT_DEFAULT_HASH=sha256 script/cibuild
@@ -107,15 +115,19 @@ jobs:
107
115
os : [ubuntu-20.04, macos-latest]
108
116
runs-on : ${{ matrix.os }}
109
117
steps :
110
- - uses : actions/checkout@v1
118
+ - uses : actions/checkout@v2
119
+ with :
120
+ fetch-depth : 0
111
121
- run : git clone -b v2.0.0 https://github.com/git/git.git "$HOME/git"
112
122
- run : script/build-git "$HOME/git"
113
123
- run : script/cibuild
114
124
build-docker :
115
125
name : Build Linux packages
116
126
runs-on : ubuntu-20.04
117
127
steps :
118
- - uses : actions/checkout@v1
128
+ - uses : actions/checkout@v2
129
+ with :
130
+ fetch-depth : 0
119
131
- uses : actions/setup-ruby@v1
120
132
- run : git clone https://github.com/git-lfs/build-dockers.git "$HOME/build-dockers"
121
133
- run : (cd "$HOME/build-dockers" && ./build_dockers.bsh)
@@ -128,7 +140,9 @@ jobs:
128
140
arch : [arm64]
129
141
container : [debian_11]
130
142
steps :
131
- - uses : actions/checkout@v1
143
+ - uses : actions/checkout@v2
144
+ with :
145
+ fetch-depth : 0
132
146
- uses : actions/setup-ruby@v1
133
147
- run : |
134
148
echo '{"experimental": true}' | sudo tee /etc/docker/daemon.json
0 commit comments