-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #280 from VisorFolks/dev/akashkollipara/github_act…
…ion_codeql_upd <Github Actions> Updated codeql version and addressed warnings
- Loading branch information
Showing
1 changed file
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
strategy: | ||
fail-fast: true | ||
matrix: | ||
language: ["c", "cpp"] | ||
language: ["cpp"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -30,16 +30,13 @@ jobs: | |
run: git config --global url."https://${TOKEN}:[email protected]/".insteadOf "https://github.com/" | ||
|
||
- name: Fetch Dependencies | ||
env: | ||
AVRTC: https://github.com/VisorFolks/avr-toolchain.git | ||
RISCVTC: https://github.com/VisorFolks/risc-v-toolchain.git | ||
run: | | ||
sudo apt install cppcheck -y | ||
make get_avr_tc AVR_TC_REPO=${AVRTC} | ||
make get_riscv_tc RISC_V_TC_REPO=${RISCVTC} | ||
make get_avr_tc | ||
make get_riscv_tc | ||
- name: Init CodeQL | ||
uses: github/codeql-action/init@v1 | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
debug: true | ||
|
@@ -53,7 +50,7 @@ jobs: | |
make demo_helios_riscv | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 | ||
uses: github/codeql-action/analyze@v2 | ||
|
||
- name: Clean Up | ||
run: | | ||
|