feat: Add New Fields and Update Tests for Payments Processing #738
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: OWASP-Dependency-Check | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 10 * * 1' | |
jobs: | |
job-container: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- id: setup-java-8-build | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '8' | |
- id: validate-wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- id: cache-gradle-packages | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- id: run-dependency-check | |
run: ./gradlew dependencyCheckAnalyze | |
- id: upload-dependency-check-report | |
uses: actions/upload-artifact@master | |
with: | |
name: OWASP Dependency Check report | |
path: build/reports |