Skip to content

Revert back to older version of libdigidocpp #844

Revert back to older version of libdigidocpp

Revert back to older version of libdigidocpp #844

Workflow file for this run

name: "CodeQL Android"
on: [push, pull_request]
env:
BUILD_NUMBER: ${{ github.run_number }}
jobs:
analyze:
name: CodeQL Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ java ]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Get RIA DigiDoc version
run: |
echo "APP_VERSION_NAME=$(grep 'appVersionName=' gradle.properties | cut -d'=' -f 2 | cut -d'-' -f 1)" >> $GITHUB_ENV
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Test and Build with Gradle
run: ./gradlew clean test --no-daemon fetchAndPackageDefaultConfiguration -PappVersionName=${{ env.APP_VERSION_NAME }}.${{ env.BUILD_NUMBER }} assemble --debug -PskipGoogleServices
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"