Skip to content

Bump actions/checkout from 4.2.0 to 4.2.2 #543

Bump actions/checkout from 4.2.0 to 4.2.2

Bump actions/checkout from 4.2.0 to 4.2.2 #543

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
name: checkout
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
- uses: actions/[email protected]
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