Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Bump com.google.guava:guava from 32.0.1-jre to 32.1.2-jre #121

Bump com.google.guava:guava from 32.0.1-jre to 32.1.2-jre

Bump com.google.guava:guava from 32.0.1-jre to 32.1.2-jre #121

Workflow file for this run

# https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
distribution: [ 'temurin' ]
java: [ '8', '11', '17' ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up java
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify