Skip to content

fix(actions): use Java17 in Actions #234

fix(actions): use Java17 in Actions

fix(actions): use Java17 in Actions #234

Workflow file for this run

name: auto-merge
on:
pull_request_target:
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: >
github.actor == 'dependabot[bot]'
steps:
- id: metadata
uses: dependabot/[email protected]
- name: Enable auto-merge for Dependabot PRs
if: >
steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --merge '${{ github.event.pull_request.html_url }}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}