Update target branches for github action workflows

This commit is contained in:
Roy Clarkson
2025-02-04 14:18:03 -05:00
parent 8c303a1472
commit e5a620adda
2 changed files with 4 additions and 4 deletions

View File

@@ -2,15 +2,15 @@ name: Java 17 baseline build
on:
push:
branches: [ 2.0.x, main ]
branches: [ 2.4.x, 2.3.x, 2.2.x, 2.1.x, 2.0.x ]
pull_request:
branches: [ 2.0.x, main ]
branches: [ 2.4.x, 2.3.x, 2.2.x, 2.1.x, 2.0.x ]
jobs:
build:
strategy:
matrix:
java: [ '17' ]
java: [ '17', '21' ]
uses: ./.github/workflows/gradle-build.yml
with:
java-version: ${{ matrix.java }}