You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI: set fetch-depth to 0 to reproduce the proper version string
To avoid "failed to load YAML file \"templates/experimental/riscv64.yaml\": can't parse builtin Lima version \"3f3a6f6\": 3f3a6f6 is not in dotted-tri format"
Signed-off-by: Akihiro Suda <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/test.yml
+4-2
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,8 @@ jobs:
25
25
steps:
26
26
- uses: actions/checkout@v4
27
27
with:
28
-
fetch-depth: 1
28
+
# To avoid "failed to load YAML file \"templates/experimental/riscv64.yaml\": can't parse builtin Lima version \"3f3a6f6\": 3f3a6f6 is not in dotted-tri format"
29
+
fetch-depth: 0
29
30
- uses: actions/setup-go@v5
30
31
with:
31
32
go-version: 1.23.x
@@ -158,7 +159,8 @@ jobs:
158
159
steps:
159
160
- uses: actions/checkout@v4
160
161
with:
161
-
fetch-depth: 1
162
+
# To avoid "failed to load YAML file \"templates/experimental/riscv64.yaml\": can't parse builtin Lima version \"3f3a6f6\": 3f3a6f6 is not in dotted-tri format"
0 commit comments