Skip to content

Update plugin org.owasp.dependencycheck to v9 #591

Update plugin org.owasp.dependencycheck to v9

Update plugin org.owasp.dependencycheck to v9 #591

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
push:
branches:
- master
- refs/tags/*
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Cache
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 11
- name: Run checks
run: ./gradlew check
- name: Run integration tests
run: ./gradlew integration