Skip to content

Bump

Bump #96

Workflow file for this run

name: Bump
on:
workflow_dispatch:
schedule:
- cron: "0 6 * * 1" # "At 06:00 on Monday."
permissions:
contents: write
pull-requests: write
jobs:
bump-versions:
name: Bump versions
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- run: uvx nox -s pc_bump
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: uvx nox -s gha_bump
- run: git diff
- uses: peter-evans/create-pull-request@v7
with:
title: "chore(deps): bump versions"
body: |
Update the versions mentioned in the docs pages.
PR generated by "Update dependencies" [workflow](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}).
token: ${{ steps.generate-token.outputs.token }}
delete-branch: true
sign-commits: true