Skip to content

Bump org.apache.commons:commons-compress from 1.26.1 to 1.26.2 (#214) #238

Bump org.apache.commons:commons-compress from 1.26.1 to 1.26.2 (#214)

Bump org.apache.commons:commons-compress from 1.26.1 to 1.26.2 (#214) #238

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"