Bump the plugins group with 4 updates #526
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: RDF Wrapping CI | |
on: | |
# Build pull requests for any branch | |
pull_request: { } | |
jobs: | |
build: | |
name: Java environment | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 17, 21 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build the code with Maven | |
run: mvn -B -ntp verify javadoc:javadoc | |
dependencies: | |
name: Dependency Check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 17 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Generate Cache Name | |
shell: bash | |
run: echo "CACHE_NAME=$(date '+%y.%j')" >> $GITHUB_ENV | |
- name: Restore NVD data cache | |
uses: actions/cache@v4 | |
with: | |
key: nvd-data-${{ env.CACHE_NAME }} | |
restore-keys: nvd-data- | |
path: ./data/cache | |
- name: Verify dependencies | |
run: mvn -B -ntp verify -Pdependencies -Dnvd.api.datafeed="file:${GITHUB_WORKSPACE}/data/cache/nvdcve-{0}.json.gz" | |
check: | |
if: always() | |
needs: | |
- build | |
- dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |