Skip to content

[#185355611] added github actions to run dependency check (#21) #83

[#185355611] added github actions to run dependency check (#21)

[#185355611] added github actions to run dependency check (#21) #83

name: Build, Test & Analyse
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build-and-test-java-app:
name: Build & Test Java App
uses: ./.github/workflows/build-and-test-java-app.yml

Check failure on line 12 in .github/workflows/build-test-analyse.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-test-analyse.yml

Invalid workflow file

error parsing called workflow ".github/workflows/build-test-analyse.yml" -> "./.github/workflows/build-and-test-java-app.yml" : failed to fetch workflow: workflow was not found.
with:
java-version: 21
secrets:
pat-with-read-packages-permission: ${{ secrets.AUTH_TOKEN }}
code-analysis-and-dependency-check:
name: Code Analysis and OWASP Dependency Check
uses: ./.github/workflows/code-analysis-and-dependency-check.yml
with:
with-frontend: false
java-version: 21
code-coverage-enabled: true
secrets:
pat-with-read-packages-permission: ${{ secrets.AUTH_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
sonar-host-url: ${{ secrets.SONAR_HOST_URL }}