Add an example of a Spring Boot Kotlin app with YAML config of Koog a… #108
This file contains hidden or 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
name: Dependency Submission | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
permissions: | |
contents: write | |
jobs: | |
dependency-submission: | |
if: github.repository == 'jetbrains/koog' | |
name: Generate and submit dependency graph | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v5 | |
- name: Setup Java | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'gradle' | |
- name: Generate and submit dependency graph | |
uses: gradle/actions/dependency-submission@v4 |