Skip to content

Commit

Permalink
Add BOM
Browse files Browse the repository at this point in the history
  • Loading branch information
yndu13 committed Jan 26, 2024
1 parent 0296ad4 commit 4bb3331
Show file tree
Hide file tree
Showing 2 changed files with 2,933 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: "CodeQL"

on:
pull_request:
branches: [ "master" ]
schedule:
- cron: '30 01 * * 2'
defaults:
run:
shell: bash

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}

- name: Autobuild
uses: mvn clean package -f pom.xml -V -C -e -Dmaven.test.skip=true

analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read

strategy:
fail-fast: false
matrix:
language: [ 'java-kotlin' ]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3
with:
working-directory: ecs-20140526

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
working-directory: ecs-20140526

0 comments on commit 4bb3331

Please sign in to comment.