Skip to content

Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre #1089

Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre

Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre #1089

Workflow file for this run

# See https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
name: build
on:
push:
branches: ['main', 'maintenance/*']
pull_request:
branches: ['main', 'maintenance/*']
schedule:
- cron: '0 0 * * 6'
permissions:
contents: 'read'
jobs:
build:
runs-on: 'ubuntu-latest'
strategy:
matrix:
java: ['8', '11', '17', '21']
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build
run: 'mvn -B formatter:validate verify javadoc:jar'