Skip to content

Bump

Bump #88

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/checkout@v4
- run: pipx run nox -s pc_bump
env:
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: pipx run 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}}). Close and reopen to trigger ci.
delete-branch: true