Merge pull request #194 from timja/migrate-issue-types #32
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
# calculates dependencies for a Gradle build-target and submits the list to the Dependency Submission API. | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update_gradle_dependencies: | |
runs-on: ubuntu-latest | |
permissions: # The Dependency Submission API requires write permission | |
contents: write | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- name: Gradle Dependency Submission | |
uses: mikepenz/[email protected] |