Skip to content

Commit

Permalink
Submit Gradle dependency graph
Browse files Browse the repository at this point in the history
  • Loading branch information
MGaetan89 committed Sep 9, 2024
1 parent 8a0471d commit 55dd858
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/dependency_graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Submit dependency graph

on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
submit-dependency-graph:
name: Submit dependency graph
runs-on: ubuntu-latest
permissions:
contents: write
env:
USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Submit dependency graph
uses: gradle/actions/dependency-submission@v4

0 comments on commit 55dd858

Please sign in to comment.