Skip to content

Commit

Permalink
Enable dependabot (#60)
Browse files Browse the repository at this point in the history
* enable dependabot

* trigger on push to master
  • Loading branch information
arnaualcazar authored Nov 19, 2024
1 parent e371ff3 commit 6ca040c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/security_submit_dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Generate dependency graph for tower-agent
on:
push:
branches: ['master']


permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Graalvm
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'graalvm-community'
native-image-musl: 'true'


- name: Generate and submit dependency graph for tower-agent
uses: gradle/actions/dependency-submission@v4
with:
dependency-resolution-task: "dependencies"
additional-arguments: "--configuration runtimeClasspath"
dependency-graph: generate-and-submit

0 comments on commit 6ca040c

Please sign in to comment.