Bump JetBrains/qodana-action from 8815ca36071ab4b3cc274b1743b6322eabb… #30
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: 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' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'semeru' # See 'Supported distributions' for available options | |
java-version: '20' | |
cache: 'maven' | |
- name: Submit Dependency Snapshot | |
uses: advanced-security/maven-dependency-submission-action@v4 |