Skip to content

Commit ec73c81

Browse files
committed
merge
1 parent f5c9c8a commit ec73c81

File tree

2 files changed

+33
-49
lines changed

2 files changed

+33
-49
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,38 @@ jobs:
147147
permissions:
148148
contents: read
149149

150+
codeql:
151+
name: Analyze (${{ matrix.language }})
152+
runs-on: ubuntu-latest
153+
permissions:
154+
security-events: write
155+
actions: read
156+
contents: read
157+
158+
strategy:
159+
fail-fast: false
160+
matrix:
161+
include:
162+
- language: actions
163+
build-mode: none
164+
165+
steps:
166+
- name: Checkout repository
167+
uses: actions/checkout@v5
168+
with:
169+
persist-credentials: false
170+
171+
- name: Initialize CodeQL
172+
uses: github/codeql-action/init@v3
173+
with:
174+
languages: ${{ matrix.language }}
175+
build-mode: ${{ matrix.build-mode }}
176+
177+
- name: Perform CodeQL Analysis
178+
uses: github/codeql-action/analyze@v3
179+
with:
180+
category: "/language:${{matrix.language}}"
181+
150182
ci-success:
151183
runs-on: ubuntu-latest
152184
if: always()
@@ -159,6 +191,7 @@ jobs:
159191
- docs
160192
- fmt
161193
- deny
194+
- codeql
162195
timeout-minutes: 30
163196
steps:
164197
- name: Decide whether the needed jobs succeeded or failed

.github/workflows/codeql.yml

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)