Skip to content

chore(deps): bump the maven-deps group with 9 updates #816

chore(deps): bump the maven-deps group with 9 updates

chore(deps): bump the maven-deps group with 9 updates #816

Workflow file for this run

name: CI workflow
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
cache: maven
- name: Build with Maven
run: ./mvnw -DskipTests package
automerge:
needs: [build]
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
merge-comment: "Merged automatically by Planet CI."
skip-commit-verification: true
skip-verification: true
codeql-workflow:
needs: [build]
uses: ./.github/workflows/codeql.yml
secrets: inherit
containers:
needs: [codeql-workflow]
uses: ./.github/workflows/containers.yml
secrets: inherit