Skip to content

Commit 0721632

Browse files
fix: install Python dependencies in CI workflows
Add requests to requirements.txt and pip install step to cleanup and validate-bootstrapper workflows to fix ModuleNotFoundError. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f6d573c commit 0721632

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/cleanup.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
run: |
2929
echo '${{ toJson(secrets) }}' > secrets.json
3030
31+
- name: Install dependencies
32+
run: pip install -r .github/workflows/innersourcing/requirements.txt
33+
3134
- name: Execute cleanup script
3235
run: |
3336
set -e
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
boto3
22
pyyaml
3+
requests

.github/workflows/validate-bootstrapper.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
- name: Checkout repository
2323
uses: actions/checkout@v2
2424

25+
- name: Install dependencies
26+
run: pip install -r .github/workflows/innersourcing/requirements.txt
27+
2528
- name: Run validate-bootstrapper script
2629
id: run
2730
env:

0 commit comments

Comments
 (0)