Skip to content

Commit c8ebdc8

Browse files
committed
publish dependency analysis
1 parent 318bcc9 commit c8ebdc8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Submit Dependency Analysis"
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
7+
schedule:
8+
- cron: '45 15 * * 6' # https://crontab.guru/#45_15_*_*_6
9+
10+
jobs:
11+
submit-dependency-analysis:
12+
name: Submit Dependency Analysis
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v4
17+
# Setup the JDK to restore the maven cache and avoid pulling the dependencies from scratch
18+
- name: Set up JDK
19+
uses: actions/setup-java@v4
20+
with:
21+
java-version: '21'
22+
distribution: 'zulu'
23+
cache: 'maven'
24+
- name: Submit Maven Dependency Snapshot
25+
uses: advanced-security/[email protected] # https://github.com/advanced-security/maven-dependency-submission-action/releases/tag/v4.1.1

0 commit comments

Comments
 (0)