Skip to content

Commit b5fce99

Browse files
authored
Merge pull request #2208 from pbalcer/update-l0-loader
update to L0 loader version v1.18.3 and don't scan _deps with Trivy or CodeQL
2 parents 348147f + a3e838e commit b5fce99

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/codeql/codeql-config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
paths-ignore:
2+
- '**/_deps/**'

.github/workflows/codeql.yml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
uses: github/codeql-action/init@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7
2828
with:
2929
languages: cpp, python
30+
config-file: ./.github/codeql/codeql-config.yml
3031

3132
- name: Install pip packages
3233
run: pip install -r third_party/requirements.txt

.github/workflows/trivy.yml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
format: 'sarif'
3636
output: 'trivy-results.sarif'
3737
exit-code: 1 # Fail if issue found
38+
skip-dirs: '**/_deps/**'
3839
# file with suppressions: .trivyignore (in root dir)
3940

4041
- name: Print report and trivyignore file

cmake/FetchLevelZero.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if (NOT DEFINED LEVEL_ZERO_LIBRARY OR NOT DEFINED LEVEL_ZERO_INCLUDE_DIR)
4040
set(UR_LEVEL_ZERO_LOADER_REPO "https://github.com/oneapi-src/level-zero.git")
4141
endif()
4242
if (UR_LEVEL_ZERO_LOADER_TAG STREQUAL "")
43-
set(UR_LEVEL_ZERO_LOADER_TAG v1.17.39)
43+
set(UR_LEVEL_ZERO_LOADER_TAG v1.18.3)
4444
endif()
4545

4646
# Disable due to a bug https://github.com/oneapi-src/level-zero/issues/104

0 commit comments

Comments
 (0)