Skip to content

Commit dd6fe5f

Browse files
committed
refactor(workflow): remove redundant submodule initialization step
Configured the actions/checkout action to handle submodule initialization and updating automatically. Removed the redundant step for adding submodules to simplify the workflow."
1 parent f087ce9 commit dd6fe5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/common_checks.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
steps:
2828
- name: Checkout Repository
2929
uses: actions/checkout@v4
30-
31-
- name: Add submodules
32-
run: git submodule update --init --recursive
30+
with:
31+
submodules: true
32+
token: ${{ secrets.GH_TOKEN }}
3333

3434
- uses: pnpm/action-setup@v3
3535
with:

0 commit comments

Comments
 (0)