Android-Password-Store/.github/workflows/codeql_analysis.yml
renovate[bot] a4f843d934
chore(deps): update github/codeql-action action to v3.26.9 (#3234)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-24 20:04:03 +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@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3.26.9
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@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3.26.9
with:
category: "/language:java"