Skip to content

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1 #1221

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1

Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.0 to 3.2.1 #1221

Workflow file for this run

name: build
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- '**.yml'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21', '22' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn package