Skip to content

Commit 5867cfd

Browse files
fix: add missing checkout step in reusable and composite workflows
1 parent 3706a36 commit 5867cfd

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/workflow-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@ jobs:
55
call-reusable-workflow:
66
runs-on: ubuntu-latest
77
steps:
8+
- name: Checkout repository
9+
uses: actions/checkout@v4
10+
811
- name: Call CI Workflow
912
uses: ./.github/workflows/utilities/reusable-workflow.yml
1013
call-composite-workflow:
1114
runs-on: ubuntu-latest
1215
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
1319
- name: Call Greeting Workflow
1420
uses: ./.github/workflows/utilities/composite-workflow.yml
1521
with:

0 commit comments

Comments
 (0)