Skip to content

Commit d92246d

Browse files
authored
ci: use actions/checkout for submodules also (#32)
Signed-off-by: Eren Atas <[email protected]>
1 parent 8a5cf2e commit d92246d

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/flagd-check.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19-
20-
- name: Update git submodules
21-
run: git submodule update --init --recursive
19+
with:
20+
submodules: recursive
2221

2322
- name: Install protobuf compiler
2423
run: |

.github/workflows/rust.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ jobs:
2121

2222
steps:
2323
- uses: actions/checkout@v4
24-
25-
- name: Update git submodules
26-
run: git submodule update --init --recursive
24+
with:
25+
submodules: recursive
2726

2827
- name: Install protobuf compiler
2928
run: |

0 commit comments

Comments
 (0)