Skip to content

Commit

Permalink
ci: require hash for python install
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Jun 12, 2024
1 parent 9b9457f commit a190493
Show file tree
Hide file tree
Showing 4 changed files with 474 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-gsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Add python dependencies
run: |
pip install -r scripts/requirements.txt
pip install -r scripts/requirements.txt --require-hashes
- name: Cache test binaries
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Add python dependencies
run: |
pip install -r scripts/requirements.txt
pip install -r scripts/requirements.txt --require-hashes
- name: Download deps
run: go mod download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Add python dependencies
run: |
pip install -r scripts/requirements.txt
pip install -r scripts/requirements.txt --require-hashes
- name: Download UI file
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
Expand Down
Loading

0 comments on commit a190493

Please sign in to comment.