Skip to content

Bump net.lingala.zip4j:zip4j from 2.10.0 to 2.11.3 in /zztsearch-etl #29

Bump net.lingala.zip4j:zip4j from 2.10.0 to 2.11.3 in /zztsearch-etl

Bump net.lingala.zip4j:zip4j from 2.10.0 to 2.11.3 in /zztsearch-etl #29

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: Test Java ${{ matrix.java }}
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 15, 17 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B package --file pom.xml