Bump versions #56
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: Bump versions | |
on: | |
workflow_dispatch: | |
inputs: | |
oldVersion: | |
description: 'Old Version (search)' | |
required: true | |
default: '7.X.0' | |
newVersion: | |
description: 'New Version (replace)' | |
required: true | |
default: '7.X.0' | |
jobs: | |
bump-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Bump versions | |
uses: camunda/[email protected] | |
with: | |
files: "*/**/package.json,*/**/pom.xml,*/**/README.md" | |
sliceVersion: -2 | |
oldVersion: ${{ github.event.inputs.oldVersion }} | |
newVersion: ${{ github.event.inputs.newVersion }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} |