diff --git a/.github/workflows/submit-dependency-graph.yml b/.github/workflows/submit-dependency-graph.yml new file mode 100644 index 00000000..a3d7cfa0 --- /dev/null +++ b/.github/workflows/submit-dependency-graph.yml @@ -0,0 +1,18 @@ +name: Submit dependency graph +on: + push: + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup Gradle to generate and submit dependency graphs + uses: gradle/gradle-build-action@v2 + with: + dependency-graph: generate-and-submit + - name: Run a build and generate the dependency graph which will be submitted post-job + run: ./gradlew build -x integration -x test \ No newline at end of file