Skip to content

Bump org.junit.platform:junit-platform-launcher from 1.11.1 to 1.11.2 #18

Bump org.junit.platform:junit-platform-launcher from 1.11.1 to 1.11.2

Bump org.junit.platform:junit-platform-launcher from 1.11.1 to 1.11.2 #18

Workflow file for this run

###
### Author: ngoanh2n
### https://docs.github.com/en/actions
### https://github.com/marketplace?type=actions
###
name: Build
on:
pull_request:
workflow_dispatch:
jobs:
build:
name: Build on Ubuntu
runs-on: ubuntu-latest
defaults:
run:
shell: bash
permissions:
checks: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Build
run: ./gradlew clean build
dependabot_merge:
name: Merge dependabot PR
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [ build ]
permissions:
contents: write
pull-requests: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
target: minor
merge-method: rebase