Skip to content

chore: bumped pdfgen-core #242

chore: bumped pdfgen-core

chore: bumped pdfgen-core #242

Workflow file for this run

name: Analyze
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: kotlin
- name: Set up Java 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
architecture: x64
- name: Build gradle artifacts
env:
ORG_GRADLE_PROJECT_githubUser: x-access-token
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }}
run: |
./gradlew shadowJar
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:kotlin"