Bump junitVersion from 5.11.1 to 5.11.3 #431
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
name: Dependencies | |
on: | |
push: | |
branches: [ main ] | |
tags: [ "v*.*.*" ] | |
schedule: | |
- cron: "39 5 1,15 * *" | |
pull_request: | |
branches: [ main ] | |
permissions: read-all | |
jobs: | |
submit-dependencies: | |
permissions: | |
contents: write # required to submit dependencies report | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: gradle/wrapper-validation-action@f9c9c575b8b21b6485636a91ffecd10e558c62f6 # v3.5.0 | |
- name: Set up JDK | |
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3.5.0 | |
with: | |
dependency-graph: generate-and-submit | |
gradle-home-cache-cleanup: true | |
- name: Generate dependency report | |
env: | |
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: runtimeClasspath | |
DEPENDENCY_GRAPH_INCLUDE_PROJECTS: "^:(?!(buildSrc|test-)).*" | |
run: ./gradlew allDeps --configuration runtimeClasspath |