Update dependency org.apache.maven.plugins:maven-project-info-reports… #265
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: up | |
on: | |
push: | |
jobs: | |
up: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: |- | |
git fetch --tags --force && \ | |
latest=$(git tag --sort=creatordate | tail -1) && \ | |
sed -E -i "s/<version>[^<]+/<version>${latest}/g" README.md | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: 'new version in README' | |
delete-branch: true | |
title: 'New version in README' | |
assignees: yegor256 | |
branch: up | |
base: master |