Skip to content

update dependencies #54

update dependencies

update dependencies #54

Workflow file for this run

name: update dependencies
on:
schedule:
- cron: '0 0 1 * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}
ref: development
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: pip
- name: Install pre-commit and pip-tools
run: pip install pre-commit pip-tools
- name: Run pre-commit autoupdate
run: pre-commit autoupdate
- name: Run pip-compile
run: pip-compile --upgrade
- name: Run GitHub Actions Version Updater
uses: saadmk11/[email protected]
with:
token: ${{ secrets.ACCESS_TOKEN }}
pull_request_branch: 'dependency-updates'