chore(deps): update dependency org.apache.maven.plugins:maven-gpg-plugin to v3.2.7 #347
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
--- | |
name: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
jobs: | |
build: | |
strategy: | |
matrix: | |
version: [11, 17] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '${{ matrix.version }}' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build without tests | |
run: mvn --batch-mode -Dgpg.skip=true -Dmaven.test.skip=true clean package |