Skip to content

Bump actions/checkout from 3.1.0 to 4.1.7 #82

Bump actions/checkout from 3.1.0 to 4.1.7

Bump actions/checkout from 3.1.0 to 4.1.7 #82

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: Build PAX JPA
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: Set up JDK 11
uses: actions/setup-java@v3.9.0
with:
java-version: '11'
distribution: 'adopt'
cache: maven
- name: Build with Maven
run: mvn -B verify --file pom.xml -Ptck -Dbnd.testing.failure.ignore=true
- name: Upload Test Results
uses: actions/upload-artifact@v3
with:
name: tck-results
if-no-files-found: error
path: '**/target/test-reports/**/*.xml'