Array creation annotation checks #355
Workflow file for this run
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
# See: https://github.com/gradle/actions/blob/main/docs/dependency-submission.md#usage-with-pull-requests-from-public-forked-repositories | |
name: Dependency review | |
on: | |
pull_request: | |
# Configure GitHub Actions cancel in progress workflow to avoid redundant runs in pull requests. | |
# See: https://docs.github.com/en/enterprise-cloud@latest/actions/writing-workflows/choosing-what-your-workflow-does/control-the-concurrency-of-workflows-and-jobs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ !contains(github.ref, 'heads/master')}} | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Dependency review' | |
uses: actions/dependency-review-action@v4 | |
with: | |
fail-on-severity: high | |
retry-on-snapshot-warnings: true | |
retry-on-snapshot-warnings-timeout: 600 |