Skip to content

Commit df753cb

Browse files
RSDK-8440: fix license finder (#706)
1 parent 7192e81 commit df753cb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/license_finder.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
license_finder:
11-
# if: github.repository_owner == 'viamrobotics'
11+
if: github.repository_owner == 'viamrobotics'
1212
name: Audit 3rd-Party Licenses
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 30
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.12"
25+
python-version: "3.11.5"
2626

2727
- uses: ruby/setup-ruby@v1
2828
with:
@@ -36,7 +36,8 @@ jobs:
3636
- name: Generate requirements.txt (exclude dev dependencies)
3737
run: |
3838
poetry export -f requirements.txt --without-hashes > requirements.txt
39+
pip install -r requirements.txt
3940
4041
- name: Run license finder
4142
run: |
42-
poetry run license_finder --python-version=3
43+
license_finder

0 commit comments

Comments
 (0)