Skip to content

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

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

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

Workflow file for this run

# This workflow will build a Java project with Gradle, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Java CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
fail-fast: false
matrix:
java: [ '21' ]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: |
${{ matrix.java }}
distribution: 'zulu'
cache: gradle
- name: Build with Gradle
run: ./gradlew clean build --no-daemon