Update Gradle Wrapper from 8.10 to 8.10.1. #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeQL SAST | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
codeql-sast: | |
name: CodeQL | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: 'kotlin' | |
- name: Assemble JAR artifact | |
id: build_jar | |
env: | |
GRADLE_USER_HOME: .gradle | |
run: ./gradlew assemble | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |