Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.0 to 3.2.1 #111
Workflow file for this run
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
name: Update the documentation | |
on: [push, pull_request] | |
jobs: | |
# We update files if needed | |
update-files: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.PAT }} | |
- name: Update resources with Maven | |
run: mvn -B process-resources | |
- name: Update files if needed | |
uses: stefanzweifel/git-auto-commit-action@v4 |