Skip to content

deps: update to OmniFaces 5.2.1 (regression fix) #4997

deps: update to OmniFaces 5.2.1 (regression fix)

deps: update to OmniFaces 5.2.1 (regression fix) #4997

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
---
name: Maven CI
permissions:
contents: read
on:
workflow_dispatch: { }
push:
branches: [ main, '3.x']
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: 25
distribution: temurin
- name: License Check
run: ./mvnw apache-rat:check "-Drat.consoleOutput"
- name: Build with Maven
# zizmor: ignore[template-injection]
run: >-
./mvnw verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}
build-all:
needs: build
strategy:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
jdk: [ 17, 21, 25 ]
dist: [ 'temurin', 'adopt-openj9', 'zulu' ]
exclude:
# was already built
- os: 'ubuntu-latest'
jdk: 25
dist: 'temurin'
# exclude temurin on MacOS. zulu (also hotspot) and OpenJ9 are sufficient.
- os: 'macOS-latest'
dist: 'temurin'
# no Temurin 21
- dist: 'temurin'
jdk: 21
# no OpenJ9 21
- dist: adopt-openj9
jdk: 21
# no OpenJ9 25
- dist: adopt-openj9
jdk: 25
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
java-version: ${{ matrix.jdk }}
distribution: ${{ matrix.dist }}
- name: Build with Maven (Linux)
if: matrix.os == 'ubuntu-latest' && matrix.jdk >= 21
# zizmor: ignore[template-injection]
run: >-
./mvnw verify --show-version --errors --batch-mode --no-transfer-progress
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}
- name: Build with Maven (non-Linux)
if: matrix.os != 'ubuntu-latest' || matrix.jdk < 21
run: >-
./mvnw verify --show-version --errors --batch-mode --no-transfer-progress
-Pskip_jakarta_ee_tests
- name: Archive test run logs
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
if: always()
with:
name: test-logs-${{ matrix.os }}-${{ matrix.jdk }}-${{ matrix.dist }}
path: |
**/target/failsafe-reports/*-output.txt
**/target/**/logs/server.log