Skip to content

Commit

Permalink
Add a workflow to update Maven versions
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed May 16, 2024
1 parent 97d48ac commit 884a5ec
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/maven-versions-use-latest-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: maven-versions-use-latest-releases

on:
workflow_dispatch: {}
schedule:
- cron: 0 11 * * WED

jobs:
bump-releases:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
server-id: ossrh
settings-path: ${{ github.workspace }}
- name: configure-git-user
run: |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
- name: maven-versions-use-latest-releases
run: |
mvn versions:use-latest-releases
git diff-index --quiet HEAD pom.xml || git commit -m "Use latest releases for Maven" pom.xml && git push origin main && rm -f pom.xml.versionsBackup

0 comments on commit 884a5ec

Please sign in to comment.