#971 Remove field injectors, #973 Dependency graph rewrite, #974 Factory assisted injection deprecation, and #975 Explicit post processing methods #775
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: Hartshorn OWASP Dependency Check | |
on: pull_request | |
jobs: | |
depCheck: | |
name: Gradle dependency check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Analyze dependencies | |
run: ./gradlew dependencyCheckAnalyze |