Android-Password-Store/.github/workflows/codeql_analysis.yml
renovate[bot] ace724727f
chore(deps): update github/codeql-action action to v3.25.5 (#3050)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-13 15:41:14 +00:00

41 lines
983 B
YAML

name: "CodeQL"
on:
workflow_dispatch:
# push:
# branches:
# - develop
# pull_request:
# branches:
# - develop
env:
SENTRY_DSN: 'https://public_key@example.com/project_id'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Setup build environment
uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
- name: Initialize CodeQL
uses: github/codeql-action/init@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
with:
languages: java
tools: latest
queries: +security-extended
- name: Build project
shell: bash
run: ./gradlew assembleNonFreeRelease
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@b7cec7526559c32f1616476ff32d17ba4c59b2d6 # v3.25.5
with:
category: "/language:java"