Skip to content

Bump com.squareup.okhttp3:okhttp from 4.11.0 to 4.12.0 #2092

Bump com.squareup.okhttp3:okhttp from 4.11.0 to 4.12.0

Bump com.squareup.okhttp3:okhttp from 4.11.0 to 4.12.0 #2092

Workflow file for this run

name: GitHub CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
java: [11, 17]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
check-latest: true
cache: 'maven'
- name: Build with Maven
run: mvn clean install -e -B -V