Update codeql-analysis.yml
Thought it was going to be straight - if it doesn't work this way will revert and do tests in forked repo
This commit is contained in:
parent
8fa3ebf286
commit
a18a861c5e
|
@ -14,6 +14,9 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 7 * * 4'
|
- cron: '0 7 * * 4'
|
||||||
|
|
||||||
|
env:
|
||||||
|
java: 11
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
name: Analyze
|
name: Analyze
|
||||||
|
@ -29,6 +32,13 @@ jobs:
|
||||||
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
|
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
# Install Java 14
|
||||||
|
- name: Setup Java
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: '${{ env.java }}'
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue