Skip to content

build(deps): Bump com.mycila:license-maven-plugin from 4.5 to 4.6 (#361) #783

build(deps): Bump com.mycila:license-maven-plugin from 4.5 to 4.6 (#361)

build(deps): Bump com.mycila:license-maven-plugin from 4.5 to 4.6 (#361) #783

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Clean and verify
run: ./mvnw --no-transfer-progress -Dmaven.javadoc.skip=true clean verify