Skip to content

Bump org.jboss.arquillian.junit5:arquillian-junit5-container from 1.7.2.Final to 1.8.0.Final #22

Bump org.jboss.arquillian.junit5:arquillian-junit5-container from 1.7.2.Final to 1.8.0.Final

Bump org.jboss.arquillian.junit5:arquillian-junit5-container from 1.7.2.Final to 1.8.0.Final #22

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://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven on Pull
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
# TODO Enable strategy for next Jakarta Release Cycle
# strategy:
# matrix:
# java-version: [ '21', '25-ea' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up JDK 21 #${{ matrix.java-version }}
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: 21 #${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Build API, SPEC, and TCK
run: mvn -B install --file pom.xml