Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3 #49

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.3 #49

Workflow file for this run

name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_call:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Get JDK version from Maven project
run: |
JDK_VERSION=$(mvn help:evaluate -Dexpression=maven.compiler.source -q -DforceStdout)
echo "JDK_VERSION=$JDK_VERSION" >> $GITHUB_ENV
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JDK_VERSION }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B clean verify --file pom.xml