Skip to content

Bump actions/checkout from 4.1.2 to 4.1.4 (#244) #471

Bump actions/checkout from 4.1.2 to 4.1.4 (#244)

Bump actions/checkout from 4.1.2 to 4.1.4 (#244) #471

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
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