Skip to content

Automatic version updates #503

Automatic version updates

Automatic version updates #503

Workflow file for this run

name: 'Automatic version updates'
on:
workflow_call:
secrets:
APP_ID:
required: true
APP_PRIVATE_KEY:
required: true
schedule:
# minute hour dom month dow (UTC)
- cron: '0 9 * * *'
# enable manual trigger of version updates
workflow_dispatch:
jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v3.5.3
with:
token: ${{ steps.generate-token.outputs.token }}
- uses: wader/bump/action@master
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}