Skip to content

Bump org.testng:testng from 7.9.0 to 7.10.0 #457

Bump org.testng:testng from 7.9.0 to 7.10.0

Bump org.testng:testng from 7.9.0 to 7.10.0 #457

Workflow file for this run

name: Jakarta Config Build
on:
push:
paths-ignore:
- '.gitattributes'
- '.gitignore'
- 'CONTRIBUTING*'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
pull_request:
paths-ignore:
- '.gitattributes'
- '.gitignore'
- 'CONTRIBUTING*'
- 'KEYS'
- 'LICENSE'
- 'NOTICE'
- 'README*'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17 ]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
name: checkout
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- uses: actions/setup-java@v4.2.1
name: set up jdk ${{matrix.java}}
with:
distribution: 'temurin'
java-version: ${{matrix.java}}
cache: 'maven'
- name: build with maven
run: mvn --batch-mode --no-transfer-progress --show-version --errors install