This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
Update Dependencies #224
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
# SPDX-FileCopyrightText: The maven-build-process Authors | |
# SPDX-License-Identifier: 0BSD | |
name: Update Dependencies | |
on: | |
schedule: | |
- cron: 0 0 * * THU | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/managed-java | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- id: update | |
name: Update properties | |
run: mvn --batch-mode --update-snapshots --define generateBackupPoms=false versions:update-properties | |
- id: cpr | |
name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: Update properties to their latest versions | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
title: Update properties to their latest versions | |
body: | | |
`mvn --batch-mode --update-snapshots --define generateBackupPoms=false versions:update-properties` | |
labels: | | |
enhancement | |
assignees: | | |
sebhoss | |
draft: false | |
base: main | |
branch: update-properties | |
delete-branch: true | |
- id: automerge | |
name: Enable Pull Request Automerge | |
if: steps.cpr.outputs.pull-request-operation == 'created' | |
run: gh pr merge --rebase --auto "${{ steps.cpr.outputs.pull-request-number }}" | |
env: | |
GH_TOKEN: ${{ secrets.PAT }} |