Skip to content

Commit

Permalink
Upgraded CodeQL CLI to recent version 2.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arburk committed Oct 11, 2024
1 parent 1c0abde commit adc8be1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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.19.0
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.19.0/codeql-linux64.zip && \
#SETUP codeql cli v2.19.1
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.19.1/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.19.0`
`docker build . -t arburk/codeql-analyzer-java:2.19.1`

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.19.0`
`docker run -v c:/dev/repos/myJavaProject:/workdir/project2scan arburk/codeql-analyzer-java:2.19.1`

0 comments on commit adc8be1

Please sign in to comment.