Update julia to 1.12.7 (#1047) #27
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: Update SBOM | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'Manifest.toml' | |
| # on demand | |
| workflow_dispatch: | |
| jobs: | |
| auto-update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| - uses: prefix-dev/setup-pixi@a09b6247153796b190642a2b53fac4241043cf6f # v0.10.0 | |
| with: | |
| pixi-version: "latest" | |
| - name: Install Julia and update SBOM file | |
| run: | | |
| pixi run generate-sbom | |
| pixi run install-prek | |
| pixi run prek run --all-files || pixi run prek run --all-files | |
| env: | |
| JULIA_PKG_PRECOMPILE_AUTO: "0" | |
| - uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 | |
| with: | |
| token: ${{ secrets.CI_PR_PAT }} | |
| branch: update/sbom | |
| title: Update SBOM | |
| commit-message: "Update SBOM" | |
| author: "GitHub <noreply@github.com>" |