-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add a GitHub Action workflow This allows us to create Gradle depedency graphs for Dependabot analysis (as the ones we already get for Javascript dependencies). * Update Java version * Add build scan * codeql 3 * run with gradle * exclude jIFC * build scan * Finalize
- Loading branch information
Showing
2 changed files
with
41 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Dependency Submission | ||
|
||
on: | ||
push: | ||
branches: [ 'master' ] | ||
schedule: | ||
- cron: '24 3 * * *' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
|
||
dependency-submission: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Set Java version | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '21' | ||
- name: Generate and submit dependency graph | ||
uses: gradle/actions/dependency-submission@v3 |