Skip to content

Commit

Permalink
Merge pull request #3103 from joffeoja/patch-2
Browse files Browse the repository at this point in the history
Submit dependency graph to make Dependabot aware of the Gradle project (Intellij extension)
  • Loading branch information
Patrick-Erichsen authored Nov 27, 2024
2 parents 8b0c489 + 6912a4a commit 7541024
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/submit-github-dependency-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Submit Gradle Dependency Graph For Dependabot

on:
push:
branches: ['main']

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Generate and submit dependency graph
uses: gradle/actions/dependency-submission@v4
with:
# The gradle project is not in the root of the repository.
build-root-directory: extensions/intellij

0 comments on commit 7541024

Please sign in to comment.