Skip to content

Commit 84fa984

Browse files
committed
fix(ci): Add python-dateutil dependency to stale-bot workflow
The stale-bot workflow failed with ModuleNotFoundError because adk_stale_agent imports python-dateutil but the runner environment did not have it installed. Added python-dateutil to the pip install step. Change-Id: I1002c8eb7bb8fe2f9e106e85c3b5a7f990fe1c62
1 parent 55cbc8c commit 84fa984

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/stale-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
pip install requests google-adk
32+
pip install requests google-adk python-dateutil
3333
3434
- name: Run Auditor Agent Script
3535
env:

0 commit comments

Comments
 (0)