Skip to content

chore(deps): bump org.xerial:sqlite-jdbc from 3.46.1.0 to 3.46.1.3 #284

chore(deps): bump org.xerial:sqlite-jdbc from 3.46.1.0 to 3.46.1.3

chore(deps): bump org.xerial:sqlite-jdbc from 3.46.1.0 to 3.46.1.3 #284

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test on Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 2
matrix:
java: [ 11.0.x, 12, 17, 21 ]
steps:
- uses: actions/checkout@v4
- name: Set up Java version ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- uses: actions/cache@v4
with:
path: /home/runner/.m2/
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build project
run: mvn -B clean install