Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0 #275

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.7.0 #275

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: build
on:
push:
branches: [develop]
pull_request:
branches: [develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 17
- name: Verify with Maven
run: mvn -B verify --file pom.xml
dependabot-merge:
needs: build
permissions:
contents: write
pull-requests: write
if: |
github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Find associated PR
uses: jwalton/gh-find-current-pr@v1
id: findpr
with:
github-token: ${{ github.token }}
state: open
sha: ${{ github.event.pull_request.head.sha || github.event.workflow_run.head_sha || github.sha }}
- name: merge-if-built
continue-on-error: true
uses: fastify/github-action-merge-dependabot@v3
with:
pr-number: ${{ steps.findpr.outputs.pr }}
target: minor