mirror of
https://github.com/Crocmagnon/checkout.git
synced 2025-01-22 05:13:36 +01:00
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Update dependencies
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 18 * * MON'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
PIP_DISABLE_PIP_VERSION_CHECK: 1
|
|
|
|
jobs:
|
|
update:
|
|
name: Update dependencies
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version-file: "pyproject.toml"
|
|
- name: Update dependencies
|
|
run: |
|
|
uv lock --upgrade
|
|
- name: Generate token
|
|
uses: tibdex/github-app-token@v2
|
|
id: generate-token
|
|
with:
|
|
app_id: ${{ secrets.PR_APP_ID }}
|
|
private_key: ${{ secrets.PR_APP_PRIVATE_KEY }}
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v7
|
|
id: create-pull-request
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
commit-message: Update dependencies
|
|
base: master
|
|
branch: update-dependencies
|
|
title: Update dependencies
|
|
delete-branch: true
|