Skip to content

Commit 625fe2f

Browse files
authored
Copy working settings from other project
1 parent b0d391d commit 625fe2f

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

.github/workflows/codeql.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
pull_request:
1818
branches: [ "master" ]
1919
schedule:
20-
- cron: '15 21 * * 2'
20+
- cron: '05 19 * * 2'
2121

2222
jobs:
2323
analyze:
@@ -45,12 +45,20 @@ jobs:
4545
include:
4646
- language: actions
4747
build-mode: none
48+
# - language: c-cpp
49+
# build-mode: autobuild
50+
# - language: csharp
51+
# build-mode: none
4852
- language: go
4953
build-mode: autobuild
54+
# - language: java-kotlin
55+
# build-mode: none # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too.
5056
- language: javascript-typescript
5157
build-mode: none
5258
- language: python
5359
build-mode: none
60+
# - language: ruby
61+
# build-mode: none
5462
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
5563
# Use `c-cpp` to analyze code written in C, C++ or both
5664
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
@@ -102,3 +110,17 @@ jobs:
102110
uses: github/codeql-action/analyze@v3
103111
with:
104112
category: "/language:${{matrix.language}}"
113+
114+
- name: Generate Security Report
115+
uses: rsdmike/github-security-report-action@v3.0.4
116+
with:
117+
template: report
118+
token: ${{ secrets.GITHUB_TOKEN }}
119+
120+
- name: GitHub Upload Release Artifacts
121+
uses: actions/upload-artifact@v4
122+
with:
123+
name: ${{ matrix.language }}-report
124+
path: |
125+
./report.pdf
126+

0 commit comments

Comments
 (0)