Skip to content

Commit a67ba11

Browse files
committed
fix: update CI for Bazel 8.3.1 and disable submodules
- Update BAZEL_VERSION from 7.0.0 to 8.3.1 for compatibility - Disable submodule checkout to avoid errors with patched rules_rust - WASM tools (wasm-tools, wac-cli, wit-bindgen-cli) already installed in CI
1 parent e9b76dd commit a67ba11

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ main ]
88

99
env:
10-
BAZEL_VERSION: 7.0.0
10+
BAZEL_VERSION: 8.3.1
1111

1212
jobs:
1313
test:
@@ -19,6 +19,8 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v4
22+
with:
23+
submodules: false
2224

2325
- name: Cache Bazel
2426
uses: actions/cache@v3
@@ -94,6 +96,8 @@ jobs:
9496

9597
steps:
9698
- uses: actions/checkout@v4
99+
with:
100+
submodules: false
97101

98102
- name: Install Dependencies
99103
run: |
@@ -143,6 +147,7 @@ jobs:
143147
- uses: actions/checkout@v4
144148
with:
145149
fetch-depth: 0
150+
submodules: false
146151

147152
- name: Generate Release Notes
148153
run: |

0 commit comments

Comments
 (0)