Skip to content

Commit

Permalink
Merge pull request #66 from Monoradioactivo/#41-add-gh-actions-wf
Browse files Browse the repository at this point in the history
#41 Add new GitHub Actions workflow to submit dependency tree samples
  • Loading branch information
rmgrimm authored Oct 8, 2023
2 parents 877ff04 + d4dc0f8 commit bb4605f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/submit-dependency-tree-samples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Submit Dependency Tree Samples

on:
push:
branches:
- main
paths:
- '**/pom.xml'

jobs:
submit-dependency-tree:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '17'

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

0 comments on commit bb4605f

Please sign in to comment.