From 81c5ed9e13fd20b5a81edfd2e29bd4a71048f600 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnau=20Alc=C3=A1zar=20Lleopart?= Date: Thu, 24 Oct 2024 10:27:04 +0200 Subject: [PATCH] added GHA to send dependency graph to GH --- .github/workflows/submit-dependency-graph.yml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/submit-dependency-graph.yml diff --git a/.github/workflows/submit-dependency-graph.yml b/.github/workflows/submit-dependency-graph.yml new file mode 100644 index 0000000000..eb382f14a4 --- /dev/null +++ b/.github/workflows/submit-dependency-graph.yml @@ -0,0 +1,23 @@ +name: Generate and submit dependency graph for nextflow +on: + pull_request: + +permissions: + contents: write + +jobs: + dependency-submission: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: 21 + + - name: Generate and submit dependency graph for nextflow + uses: gradle/actions/dependency-submission@v4 + with: + dependency-resolution-task: ":nextflow:dependencies" + additional-arguments: "--configuration runtimeClasspath" + dependency-graph: generate-and-submit