Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded CodeQL CLI to recent version 2.17.0 #22

Merged
merged 1 commit into from
Apr 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ RUN wget https://downloads.apache.org/maven/maven-3/$MAVEN_VERSION/binaries/apac
rm apache-maven-$MAVEN_VERSION-bin.tar.gz && \
mv apache-maven-$MAVEN_VERSION $MAVEN_HOME

#SETUP codeql cli v2.16.5
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.16.5/codeql-linux64.zip && \
#SETUP codeql cli v2.17.0
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.17.0/codeql-linux64.zip && \
unzip codeql-linux64.zip && \
rm codeql-linux64.zip

Expand Down
4 changes: 2 additions & 2 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ JAVA runtime provided by CodeQL CLI is used
Pull from [DockerHub](https://hub.docker.com/r/arburk/codeql-analyzer-java):
`docker pull arburk/codeql-analyzer-java`
or build image like following:
`docker build . -t arburk/codeql-analyzer-java:2.16.5`
`docker build . -t arburk/codeql-analyzer-java:2.17.0`

The project to scan needs to be mounted into ___/workdir/project2scan/___ like following:
`docker run -v c:/dev/repos/myJavaProject:/workdir/project2scan arburk/codeql-analyzer-java:2.16.5`
`docker run -v c:/dev/repos/myJavaProject:/workdir/project2scan arburk/codeql-analyzer-java:2.17.0`