Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.3 to 3.2.5 #51

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.3 to 3.2.5

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.3 to 3.2.5 #51

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
cache: 'maven'
java-version: '17'
- name: Build
run: mvn clean install -DskipTests
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-report
path: target/surefire-reports/
auto-merge-dependabot:
name: 🤖 Auto merge dependabot PR
timeout-minutes: 10
needs: build
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: 🤖 Merge PR from dependabot
uses: fastify/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
target: minor
merge-method: rebase