Update plugin fabric-loom to v1.10.1 (#189) #205
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
name: Submit dependencies | |
on: | |
push: | |
branches: | |
- master # run the action on your projects default branch | |
jobs: | |
build: | |
name: Dependencies | |
runs-on: ubuntu-latest | |
permissions: # The Dependency Submission API requires write permission | |
contents: write | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- name: 'Set up Java 21' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'liberica' # See 'Supported distributions' for available options | |
java-version: '21' | |
cache: 'gradle' | |
- uses: gradle/actions/wrapper-validation@v4 | |
- name: Generate and submit dependency graph | |
uses: gradle/actions/dependency-submission@v4 | |
with: | |
build-scan-publish: true | |
build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" | |
build-scan-terms-of-use-agree: "yes" |