Skip to content

Bump org.apache.maven.plugins:maven-release-plugin from 3.1.1 to 3.3.1 #421

Bump org.apache.maven.plugins:maven-release-plugin from 3.1.1 to 3.3.1

Bump org.apache.maven.plugins:maven-release-plugin from 3.1.1 to 3.3.1 #421

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: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
permissions:
contents: read
pull-requests: read
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set up JDK 17
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
distribution: zulu
java-version: 17
- name: Install dependencies
run: mvn install -DskipTests=true -B -V
- name: Run tests and collect coverage
run: mvn -B test