Skip to content

Commit 08e0c9f

Browse files
author
spencer@primus
committed
Add recursive to workflow checkout
1 parent 0e156a2 commit 08e0c9f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/actions/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
using: composite
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
with:
2020
submodules: recursive
2121

.github/workflows/publish_to_test_pypi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
needs: test
2121
runs-on: ubuntu-22.04
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
24+
with:
25+
submodules: recursive
2426
- name: Build and publish to pypi
2527
uses: JRubics/poetry-publish@v2.1
2628
with:

0 commit comments

Comments
 (0)