Skip to content

Bump org.projectlombok:lombok from 1.18.28 to 1.18.30 #700

Bump org.projectlombok:lombok from 1.18.28 to 1.18.30

Bump org.projectlombok:lombok from 1.18.28 to 1.18.30 #700

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: CI tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
java: [11.0.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up the JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache dependencies
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