Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/maven-dependency-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Submit Dependency Analysis"

on:
push:
branches: [ main ]

schedule:
- cron: '45 15 * * 6' # https://crontab.guru/#45_15_*_*_6

jobs:
submit-dependency-analysis:
name: Submit Dependency Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Setup the JDK to restore the maven cache and avoid pulling the dependencies from scratch
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'zulu'
cache: 'maven'
- name: Submit Maven Dependency Snapshot
uses: advanced-security/[email protected] # https://github.com/advanced-security/maven-dependency-submission-action/releases/tag/v4.1.1
Loading