Julia auto update #9
Workflow file for this run
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: Julia auto update | |
on: | |
schedule: | |
# At 03:00 on day 2 of the month | |
- cron: "0 3 2 * *" | |
# on demand | |
workflow_dispatch: | |
jobs: | |
auto-update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: "latest" | |
- name: Update Julia manifest file | |
run: | | |
pixi run install-julia | |
pixi run update-manifest-julia | |
- uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch: update/julia-manifest | |
title: Update Julia manifest | |
commit-message: "Update Julia manifest" | |
body: Update Julia dependencies to the latest version. | |
author: "GitHub <[email protected]>" |