Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.2 to 3.2.7 (#… #2156
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |