File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 40
40
if : matrix.os == 'macos-latest'
41
41
- name : Install wasmtime for tests
42
42
run : curl -f -L --retry 5 https://wasmtime.dev/install.sh | bash -s -- --version v2.0.2
43
- - uses : actions/checkout@v1
43
+ - uses : actions/checkout@v3
44
44
with :
45
- submodules : true
45
+ fetch-depth : 0
46
+ # We can't use `--depth 1` here sadly because the GNU config
47
+ # submodule is not pinned to a particular tag/branch. Please
48
+ # bump depth (or even better, the submodule), in case of "error:
49
+ # Server does not allow request for unadvertised object" in the
50
+ # future.
51
+ - run : git submodule update --init --depth 16 --jobs 3
46
52
- name : Install ccache, ninja (macOS)
47
53
run : brew install ccache ninja
48
54
if : matrix.os == 'macos-latest'
96
102
- uses : actions/checkout@v3
97
103
with :
98
104
fetch-depth : 0
99
- submodules : true
105
+ - run : git submodule update --init --depth 16 --jobs 3
100
106
- name : Build
101
107
shell : msys2 {0}
102
108
run : |
@@ -125,9 +131,11 @@ jobs:
125
131
restore-keys : |
126
132
0-cache-ubuntu-bionic
127
133
128
- - uses : actions/checkout@v1
134
+ - uses : actions/checkout@v3
129
135
with :
130
- submodules : true
136
+ fetch-depth : 0
137
+
138
+ - run : git submodule update --init --depth 16 --jobs 3
131
139
132
140
- uses : docker/login-action@v2
133
141
with :
Submodule
config updated from c179db1 to f992bcc
You can’t perform that action at this time.
0 commit comments