Skip to content

Upgrade Gradle to 8.5 and Java to 17 #396

Upgrade Gradle to 8.5 and Java to 17

Upgrade Gradle to 8.5 and Java to 17 #396

Workflow file for this run

name: Build and Test Plugin Template
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
java: 17

Check failure on line 16 in .github/workflows/CI.yml

View workflow run for this annotation

GitHub Actions / Build and Test Plugin Template

Invalid workflow file

The workflow is not valid. .github/workflows/CI.yml (Line: 16, Col: 15): Unexpected value '17'
name: Build and Test Plugin Template
runs-on: ${{ matrix.os }}
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: ${{ matrix.java }}
- name: Build and Run Tests
run: |
./gradlew --info build