Skip to content

Bump okhttp.version from 4.12.0 to 5.2.1 #861

Bump okhttp.version from 4.12.0 to 5.2.1

Bump okhttp.version from 4.12.0 to 5.2.1 #861

Workflow file for this run

# This workflow will build a Java project with Maven, 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-maven
# 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 with Maven
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
name: Maven Build
runs-on: ubuntu-latest
strategy:
matrix:
openapi-generator-maven-plugin-version: [ 7.14.0, 7.13.0, 7.12.0, 7.11.0 ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Maven Build - openapi-generator-maven-plugin:${{ matrix.openapi-generator-maven-plugin-version }}
run: mvn -B package --no-transfer-progress --file pom.xml -Dopenapi-generator-maven-plugin.version=${{ matrix.openapi-generator-maven-plugin-version }}