Bump org.bouncycastle:bcprov-jdk18on from 1.78.1 to 1.79 #446
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: Java CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 21 ] | |
name: Java ${{ matrix.java }} build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: liberica | |
java-version: ${{ matrix.java }} | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build with Maven targeting H2 backend | |
run: ./mvnw --batch-mode --update-snapshots -Plog4j2 clean verify | |
- name: Build with Maven targeting MySQL backend | |
run: ./mvnw --batch-mode --update-snapshots -Drdbms=mysql -Plog4j2 clean verify | |
- name: Build with Maven targeting Postgresql backend | |
run: ./mvnw --batch-mode --update-snapshots -Drdbms=postgres -Plog4j2 clean verify |