This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
.github/workflows/upgrade.yml #156
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
on: | |
schedule: | |
- cron: '0 0 * * 1' | |
jobs: | |
upgrade_lean: | |
runs-on: ubuntu-latest | |
name: Bump Lean and dependency versions | |
steps: | |
- name: checkout project | |
uses: actions/checkout@v2 | |
- name: upgrade Lean and dependencies | |
uses: leanprover-contrib/lean-upgrade-action@master | |
with: | |
repo: ${{ github.repository }} | |
access-token: ${{ secrets.GITHUB_TOKEN }} |