Skip to content

Commit bd809ff

Browse files
committed
Specify requirements explicitly
Since we're an action, we're not the current directory.
1 parent da2e74d commit bd809ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ runs:
88
with:
99
python-version: '3.10'
1010
cache: pip
11+
cache-dependency-path: ${{ github.action_path }}/requirements.txt
1112

1213
- name: Install Dependencies
1314
shell: bash
14-
run: pip install -U -r requirements.txt
15+
run: pip install -U -r ${{ github.action_path }}/requirements.txt
1516

1617
- name: Run Compstate Validation
1718
shell: bash

0 commit comments

Comments
 (0)