Skip to content

chore: Bump org.graalvm.buildtools:native-maven-plugin from 0.9.23 to 0.9.27 #549

chore: Bump org.graalvm.buildtools:native-maven-plugin from 0.9.23 to 0.9.27

chore: Bump org.graalvm.buildtools:native-maven-plugin from 0.9.23 to 0.9.27 #549

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
if: contains(github.event.head_commit.message, 'Releasing version') != true && contains(github.event.head_commit.message, 'Prepare next version') != true
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: 17
distribution: 'adopt'
cache: maven
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B verify