Bump org.apache.maven.plugins:maven-gpg-plugin from 3.1.0 to 3.2.6 #904
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup JDK | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: adopt | |
- name: Setup Maven | |
uses: stCarolas/setup-maven@v4.2 | |
- name: Setup Maven caching | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/** | |
key: maven_deps | |
- name: Build and test | |
run: mvn clean test |