Skip to content

build(deps): bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 #233

build(deps): bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3

build(deps): bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 #233

Workflow file for this run

name: Auto PR Review
on:
pull_request:
permissions: read-all
jobs:
review-dependabot:
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Get Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@8348ea7f5d949b08c7f125a44b569c9626b05db3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto merge for Dependabot PRs
if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' }}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
review-snyk:
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ github.actor == 'snyk-bot' }}
steps:
- name: Enable auto merge for Snyk PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
review-license:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744
- name: Review license
uses: actions/dependency-review-action@94145f3150bfabdc97540cbd5f7e926306ea7744
with:
fail-on-severity: high
deny-licenses: AGPL-1.0-only, AGPL-1.0-or-later, AGPL-3.0-only, AGPL-3.0-or-later, GPL-1.0-only, GPL-1.0-or-later, GPL-2.0-only, GPL-2.0-or-later, GPL-3.0-only, GPL-3.0-or-later, LGPL-2.0-only, LGPL-2.0-or-later, LGPL-2.1-only, LGPL-2.1-or-later, LGPL-3.0-only, LGPL-3.0-or-later