Skip to content

Commit

Permalink
Upgraded CodeQL CLI to recent version 2.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
arburk committed Aug 29, 2023
1 parent af07013 commit 5653aaf
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 @@ -24,8 +24,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.14.1
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.14.1/codeql-linux64.zip && \
#SETUP codeql cli v2.14.3
RUN wget https://github.com/github/codeql-cli-binaries/releases/download/v2.14.3/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.14.1`
`docker build . -t arburk/codeql-analyzer-java:2.14.3`

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

0 comments on commit 5653aaf

Please sign in to comment.