Harden OSS release and maintenance workflow - #9
Merged
Merged
Conversation
There was a problem hiding this comment.
🟡 Changes recommended
The release workflow contains a Bash portability issue (${GITHUB_SHA::7}) that can break manual packaging runs on macOS runners.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
This PR hardens ProofDrift’s OSS release and maintenance posture for the 0.0.2 preview by synchronizing workspace versions, strengthening CI/release automation (including attestations/SBOMs), and adding/refreshing public-facing governance/support/security documentation.
Changes:
- Synchronize workspace crates to version
0.0.2and updateCargo.lock. - Harden GitHub Actions workflows and the composite action (pinned SHAs, explicit toolchain selection, release packaging + SBOM + provenance attestations, and an action smoke test).
- Add/expand OSS maintenance docs (support policy, roadmap, governance, releasing, changelog, contributor and conduct guidance).
File summaries
| File | Description |
|---|---|
| SUPPORT.md | Adds support policy and platform support matrix. |
| SECURITY.md | Adds supported-versions guidance and links to support policy. |
| ROADMAP.md | Introduces a roadmap and 1.0 readiness criteria/non-goals. |
| RELEASING.md | Documents the tagged-release process and verification steps. |
| README.md | Expands project positioning, install guidance, and action usage snippet. |
| integrations/github-action/README.md | Documents composite action usage, outputs, and modes. |
| integrations/github-action/action.yml | Adds Rust installation step and exposes report-path outputs. |
| GOVERNANCE.md | Adds governance/decision model and maintainer responsibilities. |
| crates/proofdrift-secrets/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-schema/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-scan/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-runtime/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-registry/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-provenance/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-policy/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-patch/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-mcp-proxy/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-evidence/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-discover/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-core/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-capabilities/Cargo.toml | Moves crate versioning to workspace version. |
| crates/proofdrift-attest/Cargo.toml | Moves crate versioning to workspace version. |
| CONTRIBUTING.md | Expands contribution expectations and development requirements. |
| CODE_OF_CONDUCT.md | Expands conduct expectations and enforcement language. |
| CHANGELOG.md | Adds changelog entries for 0.0.1 and 0.0.2. |
| Cargo.toml | Bumps workspace version to 0.0.2. |
| Cargo.lock | Updates locked crate versions to 0.0.2. |
| .github/workflows/security.yml | Pins actions, installs toolchain explicitly, and locks clippy/tests. |
| .github/workflows/release.yml | Adds multi-platform packaging, SBOM, checksums, and attestations. |
| .github/workflows/ci.yml | Pins actions, fixes MSRV install semantics, and adds action smoke test. |
| .github/ISSUE_TEMPLATE/bug_report.yml | Updates bug report version placeholder. |
| .github/dependabot.yml | Removes BOM and adjusts update policy (incl. major updates). |
Review details
- Files reviewed: 31/32 changed files
- Comments generated: 5
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+74
to
+75
| test -f '${{ steps.proofdrift.outputs.scan-report-path }}' | ||
| test -f '${{ steps.proofdrift.outputs.patch-report-path }}' |
Comment on lines
+40
to
+41
| version="${GITHUB_REF_NAME}" | ||
| if [[ "${GITHUB_REF}" != refs/tags/* ]]; then version="manual-${GITHUB_SHA::7}"; fi |
|
|
||
| ```yaml | ||
| steps: | ||
| - uses: actions/checkout@v7 |
| contents: read | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v7 |
| strict: 'false' | ||
|
|
||
| - name: Upload ProofDrift reports | ||
| uses: actions/upload-artifact@v7 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Hardens ProofDrift's public OSS/release workflow for the 0.0.2 preview.
Local verification
The production MCP stdio/HTTP transport and L2 isolation remain explicitly unclaimed.