Skip to content

Commit

Permalink
Add workflow to update mise tool versions (#435)
Browse files Browse the repository at this point in the history
* Add workflow to update mise tool versions

Adds a workflow that updates the versions in .mise.toml and commits and
pushes the changes.

Related to https://linear.app/prefect/issue/PLA-961/automate-updating-dependencies-defined-in-mise

* Reference the workflow

* Refer to 'main'

* Remove redundant checkout step

Will be handled by actions-mise-upgrade
  • Loading branch information
mitchnielsen authored Jan 31, 2025
1 parent 925dca7 commit f287756
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/update-mise-tools.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Update mise tool versions

"on":
schedule:
- cron: 0 15 1 * * # First of the month @ 3pm UTC
workflow_dispatch: {}

permissions: {}

jobs:
updatecli_major:
runs-on: ubuntu-latest
permissions:
# required to write to the repo
contents: write
# required to open a pr with changes
pull-requests: write
steps:
- name: upgrade mise tools
uses: prefecthq/actions-mise-upgrade@main

0 comments on commit f287756

Please sign in to comment.