fix(deps): crossbeam-epoch 0.9.20 for RUSTSEC-2026-0204 (#210) #1243
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
| # Sovereign CI — calls reusable workflow from paiml/.github | |
| # Change once in paiml/.github → applies to all repos | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| uses: paiml/.github/.github/workflows/sovereign-ci.yml@main | |
| with: | |
| repo: ${{ github.event.repository.name }} | |
| # Phase 3 pilot (medium workload) — build-performance.md §7 Phase 3. | |
| # Workspace with rash + runtime + wasm — moderate dep graph, | |
| # candidate for mid-range hit-rate signal between copia and aprender. | |
| enable_sccache: true | |
| use_nextest: true | |
| secrets: inherit | |
| # Top-level gate: org ruleset requires status check named "gate" (exact match). | |
| # The reusable workflow produces "ci / gate" which doesn't satisfy the ruleset. | |
| gate: | |
| runs-on: ubuntu-latest | |
| needs: [ci] | |
| if: always() | |
| steps: | |
| - name: Check required jobs | |
| run: | | |
| if [ "${{ needs.ci.result }}" != "success" ]; then | |
| echo "ci failed: ${{ needs.ci.result }}" | |
| exit 1 | |
| fi | |
| echo "All required jobs passed" |