Skip to content

Commit a01e4a3

Browse files
committed
Fix Semgrep CI: replace pipx with pip, bump to 1.113.0
1 parent 3c65733 commit a01e4a3

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

.github/workflows/sast.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,10 @@ jobs:
2424
- name: Checkout
2525
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2626

27-
- name: Install pipx + Semgrep (pinned)
27+
- name: Install Semgrep
2828
run: |
29-
set -euxo pipefail
30-
sudo apt-get update
31-
sudo apt-get install -y pipx
32-
pipx ensurepath
33-
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
34-
pipx install semgrep==1.83.0
29+
python3 -m pip install --upgrade pip setuptools
30+
python3 -m pip install semgrep==1.113.0
3531
semgrep --version
3632
3733
# Note: no --error flag; job will not fail on findings.

0 commit comments

Comments
 (0)