Skip to content

Commit 10c50e6

Browse files
committed
Add BOM
1 parent 0296ad4 commit 10c50e6

File tree

2 files changed

+2930
-0
lines changed

2 files changed

+2930
-0
lines changed

Diff for: .github/workflows/codeql.yml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: "CodeQL"
2+
3+
on:
4+
pull_request:
5+
branches: [ "master" ]
6+
schedule:
7+
- cron: '30 01 * * 2'
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
java: [8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Setup
21+
uses: actions/setup-java@v1
22+
with:
23+
java-version: ${{ matrix.java }}
24+
25+
- name: Autobuild
26+
run: mvn clean package -f pom.xml -V -C -e -Dmaven.test.skip=true
27+
28+
analyze:
29+
name: Analyze
30+
runs-on: ubuntu-latest
31+
permissions:
32+
security-events: write
33+
actions: read
34+
contents: read
35+
36+
strategy:
37+
fail-fast: false
38+
matrix:
39+
language: [ 'java-kotlin' ]
40+
41+
steps:
42+
- name: Checkout repository
43+
uses: actions/checkout@v4
44+
45+
- name: Initialize CodeQL
46+
uses: github/codeql-action/init@v3
47+
with:
48+
languages: ${{ matrix.language }}
49+
paths: ecs-20140526
50+
51+
- name: Autobuild
52+
uses: github/codeql-action/autobuild@v3
53+
with:
54+
paths: ecs-20140526
55+
56+
- name: Perform CodeQL Analysis
57+
uses: github/codeql-action/analyze@v3
58+
with:
59+
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)