Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.7 (#… #2156

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.7 (#…

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.7 (#… #2156

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ '**' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17, 21]
name: Java ${{ matrix.java }} build
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: liberica
- name: Restore cache
uses: skjolber/[email protected]
with:
step: restore
- name: Adjust memory use for Maven
run: echo "MAVEN_OPTS='-Xmx2g'" >> ~/.mavenrc
- name: Build with Maven
run: mvn verify
- name: Restore cache
uses: skjolber/[email protected]
with:
step: restore