Skip to content

Commit

Permalink
Add pipeline to generate dependency snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes authored Dec 30, 2023
1 parent dc76959 commit f86b0f1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Security Analysis
on:
push:
branches:
- main

jobs:
submit-dependency-snapshot:
name: Submit Dependency Snapshot
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Initialize Java environment
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21

- name: Submit Dependency Snapshot
uses: advanced-security/maven-dependency-submission-action@v3
with:
maven-args: -B

0 comments on commit f86b0f1

Please sign in to comment.