Skip to content

Commit

Permalink
Enable dependabot alerts (#28)
Browse files Browse the repository at this point in the history

Signed-off-by: Arnau Alcázar Lleopart <[email protected]>
  • Loading branch information
arnaualcazar authored Nov 6, 2024
1 parent 9dcce05 commit 1416d65
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/generate-submit-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Generate and submit dependency graph for libseqera
on:
push:
branches: ['master']

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
strategy:
matrix:
components: ["wave-utils", "wave-api"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17

- name: Generate and submit dependency graph for libseqera
uses: gradle/actions/dependency-submission@v4
with:
dependency-resolution-task: ":${{ matrix.components }}:dependencies"
additional-arguments: "--configuration runtimeClasspath"
dependency-graph: generate-and-submit

0 comments on commit 1416d65

Please sign in to comment.