All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates..github.workflows.dependencies_check.yml Maven / Gradle / Ivy

There is a newer version: 4.4.0
Show newest version
name: Dependencies Check

on:
  schedule:
    - cron: "0 2 * * *"

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - name: Set up JDK 11
        uses: actions/setup-java@v3
        with:
          distribution: "temurin"
          java-version: 11
          cache: "maven"
      - name: Checking dependencies for vulnerabilities
        run: mvn --batch-mode org.sonatype.ossindex.maven:ossindex-maven-plugin:audit -f pom.xml




© 2015 - 2024 Weber Informatics LLC | Privacy Policy