This repository was archived by the owner on Nov 18, 2025. It is now read-only.
Auto update Julia dependencies #168
This file contains hidden or 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: Auto update Julia dependencies | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 1' # Every week | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/update-manifest.yml | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| APP_ID: '189113' # https://github.com/apps/wen-wei-s-pr-bot | |
| jobs: | |
| update-manifest: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Julia | |
| uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| - name: Update Julia dependencies | |
| env: | |
| JULIA_PKG_PRECOMPILE_AUTO: '0' | |
| run: julia --project=@. --color=yes -e 'using Pkg; Pkg.update()' | |
| # Authenticate with a custom GitHub APP | |
| # https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#authenticating-with-github-app-generated-tokens | |
| - name: Generate token for PR | |
| uses: actions/create-github-app-token@v2 | |
| id: generate-token | |
| with: | |
| app-id: ${{ env.APP_ID }} | |
| private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
| - name: Create Pull Request | |
| id: cpr | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| title: Julia Dependency Update | |
| token: ${{ steps.generate-token.outputs.token }} | |
| labels: | | |
| automerge |