Skip to content

Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 #257

Bump org.assertj:assertj-core from 3.25.1 to 3.25.2

Bump org.assertj:assertj-core from 3.25.1 to 3.25.2 #257

Workflow file for this run

name: test
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}-latest
timeout-minutes: 10
strategy:
matrix:
java: [ 17 ]
os: [ubuntu, windows]
steps:
- name: Check out repo
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- name: Cache Gradle
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle-
- name: Run Gradle's test task
run: ./gradlew --no-daemon --parallel --continue --build-cache --stacktrace test
auto-merge:
needs: build
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: auto-merge
if: |
github.actor == 'dependabot[bot]' &&
github.event_name == 'pull_request'
run: |
gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
# this secret needs to be in the settings.secrets.dependabot
GITHUB_TOKEN: ${{secrets.GH_ACTION_TOKEN}}