PlotSquared/.github/workflows/codeql.yml

32 lines
880 B
YAML
Raw Normal View History

2022-02-23 10:54:07 +01:00
name: "CodeQL"
on:
push:
2023-03-15 10:30:38 +01:00
branches: [ main ]
2022-02-23 10:54:07 +01:00
pull_request:
# The branches below must be a subset of the branches above
2023-03-15 10:30:38 +01:00
branches: [ main ]
2022-02-23 10:54:07 +01:00
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
2022-02-23 10:54:07 +01:00
steps:
- name: Checkout repository
uses: actions/checkout@v3
2022-02-23 10:54:07 +01:00
- name: Initialize CodeQL
uses: github/codeql-action/init@32dc499307d133bb5085bae78498c0ac2cf762d5 # v2
2022-02-23 10:54:07 +01:00
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@32dc499307d133bb5085bae78498c0ac2cf762d5 # v2
2022-02-23 10:54:07 +01:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@32dc499307d133bb5085bae78498c0ac2cf762d5 # v2