Skip to content

Commit b62c153

Browse files
authored
Add dependabot artifact upload action
Signed-off-by: ascopes <73482956+ascopes@users.noreply.github.com>
1 parent ba67385 commit b62c153

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/dependabot.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Security Analysis
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
submit-dependency-snapshot:
9+
name: Submit Dependency Snapshot
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v3.5.0
16+
with:
17+
fetch-depth: 1
18+
19+
- name: Initialize Java environment
20+
uses: actions/setup-java@v3.11.0
21+
with:
22+
distribution: zulu
23+
java-version: 11
24+
25+
- name: Submit Dependency Snapshot
26+
uses: advanced-security/maven-dependency-submission-action@v3

0 commit comments

Comments
 (0)