Update pinned dependencies #293
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update pinned dependencies | |
on: | |
schedule: | |
- cron: 0 0 * * 0 | |
workflow_dispatch: | |
jobs: | |
release: | |
name: Update pinned dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Update pinned dependencies | |
run: ./build.sh upgrade-requirements | |
- name: Open pull request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{secrets.GH_TOKEN}} | |
delete-branch: true | |
title: Update pinned dependencies | |
body: | | |
Automatically update pinned dependencies | |
commit-message: 'Update pinned dependencies' | |
committer: 'CI on behalf of the Hypothesis team <[email protected]>' | |
author: 'CI on behalf of the Hypothesis team <[email protected]>' |