Skip to content

Commit

Permalink
ci: Enforce pinned pip dependencies
Browse files Browse the repository at this point in the history
This should give us a 10/10 OpenSSF rating for pinned dependencies.
  • Loading branch information
rettichschnidi committed Nov 15, 2024
1 parent d723815 commit f5b929f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Install dependencies
run: |
pip install -r tests/integration/requirements.txt
pip install --require-hashes -r tests/integration/requirements.txt
- name: Execute integration tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
sudo apt update
sudo apt -qy --no-install-recommends install clang-format-14
pip3 install -r tools/requirements-compliance.txt
pip3 install --require-hashes -r tools/requirements-compliance.txt
- name: Check commits with gitlint
run: |
Expand Down

0 comments on commit f5b929f

Please sign in to comment.