Merge pull request #3586 from github/koesie10/fix-e2e-tests

Always use the latest released CodeQL version in E2E tests
This commit is contained in:
Koen Vlaswinkel
2024-04-30 16:30:42 +02:00
committed by GitHub

View File

@@ -7,7 +7,7 @@ RUN apt-get update \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN wget -q -O /tmp/codeql.zip https://github.com/github/codeql-cli-binaries/releases/download/v2.15.5/codeql-linux64.zip \
RUN wget -q -O /tmp/codeql.zip https://github.com/github/codeql-cli-binaries/releases/latest/download/codeql-linux64.zip \
&& unzip -q /tmp/codeql.zip -d /opt \
&& rm -rf /tmp/codeql.zip