aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorpandaninjas <admin@malwarefight.gq>2023-01-03 19:44:55 +0000
committerGitHub <noreply@github.com>2023-01-03 19:44:55 +0000
commit6776a438a61df67217f5c16af04a59f9102f299a (patch)
tree1733717ed7d0883d6cb3fbd11c0882a7497e274f /.github
parentf47a56e922b2648b524f383e44e54ae01e62d6d7 (diff)
downloadNoSession-6776a438a61df67217f5c16af04a59f9102f299a.tar.gz
NoSession-6776a438a61df67217f5c16af04a59f9102f299a.tar.bz2
NoSession-6776a438a61df67217f5c16af04a59f9102f299a.zip
Update codeql.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codeql.yml22
1 files changed, 7 insertions, 15 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 7d945d9..6504ce4 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -54,21 +54,13 @@ jobs:
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
-
- # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
- # If this step fails, then you should remove it and run the build manually (see below)
- - name: Autobuild
- uses: github/codeql-action/autobuild@v2
-
- # ℹī¸ Command-line programs to run using the OS shell.
- # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
-
- # If the Autobuild fails above, remove it and uncomment the following three lines.
- # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
-
- # - run: |
- # echo "Run, Build Application using script"
- # ./location_of_script_within_repo/buildscript.sh
+ - uses: actions/setup-java@v3
+ with:
+ distribution: 'corretto' # See 'Supported distributions' for available options
+ java-version: '8'
+
+
+ - run: ./gradlew build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2