Skip to content

build(deps): bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre #91

build(deps): bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre

build(deps): bump com.google.guava:guava from 33.0.0-jre to 33.1.0-jre #91

Workflow file for this run

name: compile
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: compile with Maven
run: mvn -B test --file pom.xml