Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.7 #23

chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.7

chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.7 #23

Workflow file for this run

name: Build
on:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Determine Java version from POM
run: |
echo "JAVA_VERSION=$(grep '<jdk.version>' pom.xml | cut -f2 -d'>' | cut -f1 -d'<')" >> ${GITHUB_ENV}
- name: Set up JDK ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'temurin'
cache: 'maven'
- name: Build, test, analyze
run: mvn -B verify