build(deps): bump fastify/github-action-merge-dependabot from 3.10.1 to 3.10.2 #204
Workflow file for this run
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: Run the testsuite | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
java: [11, 17] | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Java ${{ matrix.java }} | |
uses: actions/[email protected] | |
with: | |
distribution: "temurin" | |
java-version: ${{ matrix.java }} | |
- name: Version information | |
run: | | |
java -version | |
mvn --version | |
- name: Run tests and package | |
run: mvn -D"http.keepAlive=false" -D"maven.wagon.http.pool=false" -D"maven.wagon.httpconnectionManager.ttlSeconds=120" -B -V clean package | |
auto-merge: | |
runs-on: ubuntu-latest | |
needs: build | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Automatically merge dependabot upgrades | |
uses: fastify/[email protected] | |
with: | |
target: minor |