Skip to content

Commit 178cf65

Browse files
committed
pin semgrep version
1 parent 870942b commit 178cf65

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
python-version: '3.11'
6565

6666
- name: Install Semgrep
67-
run: python3 -m pip install semgrep
67+
run: python3 -m pip install semgrep==1.84.1
6868

6969
- name: Run Check task
7070
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: '3.11'
2929

3030
- name: Install Semgrep
31-
run: python3 -m pip install semgrep
31+
run: python3 -m pip install semgrep==1.84.1
3232

3333
- uses: actions/setup-java@v3
3434
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Follow these instructions if you intend to modify and build this project from so
2727
[here](https://semgrep.dev/docs/getting-started/#installing-and-running-semgrep-locally)
2828
for instructions. It can usually be done via `pip`:
2929
```shell
30-
pip install semgrep
30+
pip install semgrep==1.84.1
3131
```
3232

3333
If your python library paths contain your home directory as a root folder (i.e.

core-codemods/src/test/java/io/codemodder/codemods/integration/baseimage/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN ln -s /usr/bin/python3 /usr/bin/python && \
2020
java -version && \
2121
python --version && \
2222
gradle --version && \
23-
python3 -m pip install semgrep==1.15.0
23+
python3 -m pip install semgrep==1.84.1
2424

2525
# Generate tool executable
2626
WORKDIR /codemodder-java

0 commit comments

Comments
 (0)