Skip to content

Bump softprops/action-gh-release from 1 to 2 #86

Bump softprops/action-gh-release from 1 to 2

Bump softprops/action-gh-release from 1 to 2 #86

Workflow file for this run

name: CodeQL
on:
push:
paths:
- '**'
branches:
- '**'
schedule:
- cron: '0 0 * * 0'
jobs:
codeql:
name: CodeQL
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
packages: read
security-events: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Set Gradle permissions
run: chmod +x gradlew
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
tools: latest
- name: Build project
uses: gradle/gradle-build-action@v3
env:
GHPKG_USER: ${{ github.repository_owner }}
GHPKG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
arguments: build
cache-disabled: true
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3