Bump quarkus from 3.15.2 to 3.17.3 #52
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 Tests | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- labeled | |
jobs: | |
build: | |
if: github.actor == 'dependabot[bot]' || github.actor == 'mouse256' || github.event.label.name == 'queued' | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: '21' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
gradle-version: wrapper | |
- name: Run build with Gradle Wrapper | |
run: ./gradlew check | |
- name: Auto Merge | |
if: ${{ github.actor == 'dependabot[bot]' }} # Ensure this only applies to Dependabot PRs | |
run: gh pr merge --rebase --auto ${{ github.event.pull_request.number }} | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |