Skip to content

Commit 4016745

Browse files
authored
Point workflows at new python requirements file (#1035)
Fixes to the Check Secure and Packaging workflows to point them to the new python requirements file gha/scripts/requirements.txt.
1 parent 93ac226 commit 4016745

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/checks_secure.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
python-version: 3.7
3535
- name: Install prerequisites
3636
if: steps.check.outputs.has-permission != 1 || github.event.pull_request.head.repo.full_name != github.repository
37-
run: pip install -r scripts/gha/python_requirements.txt
37+
run: pip install -r scripts/gha/requirements.txt
3838
- name: Dismiss reviews
3939
if: steps.check.outputs.has-permission != 1 || github.event.pull_request.head.repo.full_name != github.repository
4040
shell: bash

.github/workflows/cpp-packaging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -786,7 +786,7 @@ jobs:
786786
- name: Use GitHub API to start workflow
787787
shell: bash
788788
run: |
789-
pip install -r scripts/gha/python_requirements.txt
789+
pip install -r scripts/gha/requirements.txt
790790
if [[ -z ${USE_EXPANDED_MATRIX} ]]; then
791791
USE_EXPANDED_MATRIX=0
792792
fi

0 commit comments

Comments
 (0)