chore(deps): update actions/setup-java digest to f2beeb2 #133
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 | |
| # See https://github.com/gradle/actions/blob/768a17f3488dc3fe0155ff431553e1f53d57e22e/dependency-submission/README.md#the-dependency-submission-action | |
| # The action allows GitHub to alert about reported vulnerabilities in the project | |
| on: | |
| push: | |
| branches: | |
| - master | |
| # Declare default permissions as read-only. | |
| permissions: read-all | |
| jobs: | |
| dependency-submission: | |
| name: Submit dependencies | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 | |
| with: | |
| persist-credentials: false | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5 | |
| with: | |
| distribution: zulu | |
| java-version: 21 | |
| server-id: central | |
| - name: Generate and submit dependency graph | |
| uses: gradle/actions/dependency-submission@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5 |