Skip to content

Commit

Permalink
Try to upgrade codeql-coding-standards to latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
Mi-La committed Jan 23, 2024
1 parent 0f62528 commit 79c8e87
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/codeql_autosar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ jobs:

- name: Install specific version of Coding Standards CodeQL queries
run: |
wget https://github.com/github/codeql-coding-standards/releases/download/v2.23.0/code-scanning-cpp-query-pack-2.23.0.zip -P "${GITHUB_WORKSPACE}/build"
unzip "${GITHUB_WORKSPACE}/build/code-scanning-cpp-query-pack-2.23.0.zip" -d "${GITHUB_WORKSPACE}/build"
wget https://github.com/github/codeql-coding-standards/releases/download/v2.24.0/code-scanning-cpp-query-pack.zip -P "${GITHUB_WORKSPACE}/build"
# needed to unzip double zipped release 2.24.0
unzip -o "${GITHUB_WORKSPACE}/build/code-scanning-cpp-query-pack.zip" -d "${GITHUB_WORKSPACE}/build"
unzip "${GITHUB_WORKSPACE}/build/code-scanning-cpp-query-pack.zip" -d "${GITHUB_WORKSPACE}/build"
- name: Install dependencies
run: sudo apt-get install cmake doxygen graphviz

Expand Down

0 comments on commit 79c8e87

Please sign in to comment.