Skip to content

Bump

Bump #195

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@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: generate-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
# Scope the token to only what the PR creation needs
permission-contents: write
permission-pull-requests: write
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
- 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@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
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