Specify Gradle version (#21720)

This commit is contained in:
Mattias Sehlstedt 2025-08-09 17:16:52 +02:00 committed by GitHub
parent 3e577d58c3
commit 6ff9e67bad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,9 @@ on:
- master
- '[5-9]+.[0-9]+.x'
env:
GRADLE_VERSION: '8.14.3'
jobs:
build:
name: 'Build: JDK ${{ matrix.java }} (${{ matrix.os }})'
@ -65,7 +68,9 @@ jobs:
- name: Test Gradle plugin usage
shell: bash
run: gradle -b modules/openapi-generator-gradle-plugin/samples/local-spec/build.gradle buildGoSdk --stacktrace
run: gradle --project-dir modules/openapi-generator-gradle-plugin/samples/local-spec buildGoSdk --stacktrace
with:
gradle-version: ${{ env.GRADLE_VERSION }}
- name: Test Maven plugin integration
if: matrix.java == '11'