-
-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.1 KB
/
security.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Security
on:
workflow_dispatch:
schedule:
- cron: '27 23 * * 1'
jobs:
security:
runs-on: ubuntu-latest
permissions:
contents: write
actions: read
security-events: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gradle/wrapper-validation-action@v1
- name: Use JDK 19
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 19
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: true
- name: Run snapshot action
uses: mikepenz/[email protected]
with:
gradle-build-configuration: compileClasspath
- name: Build with Gradle
run: |
./gradlew --no-daemon --no-build-cache -s :build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:java"