Skip to content

Add CVE-2024-3104 Detector Plugin #589

Add CVE-2024-3104 Detector Plugin

Add CVE-2024-3104 Detector Plugin #589

Workflow file for this run

name: community-plugins-build
on:
push:
paths:
- 'community/**'
pull_request:
paths:
- 'community/**'
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
java: [ 11 ]
runs-on: ${{ matrix.os }}
name: 'Build Community plugins on ${{ matrix.os }} using Java ${{ matrix.java }}'
steps:
- name: 'Check out repository'
uses: actions/checkout@v2
- name: 'Set up JDK ${{ matrix.java }}'
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: 'Cache Gradle resources'
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: 'Build Community plugins'
run: ./community/build_all.sh