Code analysis and dependency submission #179
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code analysis and dependency submission | |
on: | |
pull_request: | |
workflow_dispatch: | |
schedule: ## Kjører kl. 05:00 mandag -> fredag | |
- cron: '0 5 * * 1-5' | |
jobs: | |
analyze_code: | |
name: Analyze Code | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
uses: navikt/sosialhjelp-ci/.github/workflows/codeql_java.yml@main | |
dependency_submission: | |
name: Dependency Submission | |
runs-on: ubuntu-latest | |
env: | |
ORG_GRADLE_PROJECT_githubUser: ${{ inputs.githubUser }} | |
ORG_GRADLE_PROJECT_githubPassword: ${{ secrets.GITHUB_TOKEN }} | |
permissions: # The Dependency Submission API requires write permission | |
contents: write | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- name: 'Setup Java with' | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Run dependency submission from Snapshot | |
uses: mikepenz/[email protected] | |
with: | |
gradle-build-module: |- | |
:sosialhjelp-common-api | |
:sosialhjelp-common-kotlin-utils | |
:sosialhjelp-common-selftest | |
sub-module-mode: INDIVIDUAL_DEEP |