Bump org.apache.derby:derby from 10.14.2.0 to 10.17.1.0 #8
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: verify | |
on: [pull_request, push] | |
jobs: | |
verify: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout... | |
uses: actions/checkout@v2 | |
- name: Set up JDK... | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Retrieve mvn repo cache... | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | |
restore-keys: maven-${{ runner.os }} | |
- name: Build and test... | |
run: mvn verify |