Skip to content

Bump versions

Bump versions #56

Workflow file for this run

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 }}