Skip to content

Propagate changes from main into development#1046

Merged
Wikid82 merged 7 commits into
developmentfrom
main
Jun 2, 2026
Merged

Propagate changes from main into development#1046
Wikid82 merged 7 commits into
developmentfrom
main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented Jun 1, 2026

Automated PR to propagate changes from main into development.

Triggered by push to main.

Wikid82 and others added 3 commits May 25, 2026 10:51
Weekly: Promote nightly to main (2026-05-25)
fix(orthrus): stop Dockhand flapping and wire uptime to session liveness
@github-advanced-security
Copy link
Copy Markdown
Contributor

You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool.

What Enabling Code Scanning Means:

  • The 'Security' tab will display more code scanning analysis results (e.g., for the default branch).
  • Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results.
  • You will be able to see the analysis results for the pull request's branch on this overview once the scans have completed and the checks have passed.

For more information about GitHub Code Scanning, check out the documentation.

actions-user and others added 4 commits June 1, 2026 21:12
Add a disk space reclamation step as the first step in both
multi-platform build jobs to eliminate runner disk exhaustion during
linux/amd64 + linux/arm64 Docker builds.

The ubuntu-latest runner ships with Android SDK (~8 GB), .NET (~2 GB),
and Haskell (~2 GB) pre-installed, consuming nearly all available disk
before Buildx begins. When disk fills mid-build, the runner process dies
without sending terminal step statuses to GitHub, leaving the UI in a
paradoxical "failed and in progress" state simultaneously.

Docker daemon images are intentionally preserved so Buildx can operate
normally. Expected recovery: 10–15 GB per build job.

Action pinned to full SHA per supply chain security policy.
Weekly: Promote nightly to main (2026-06-01)
@github-actions
Copy link
Copy Markdown
Contributor Author

github-actions Bot commented Jun 2, 2026

✅ Supply Chain Verification Results

PASSED

📦 SBOM Summary

  • Components: 1528

🔍 Vulnerability Scan

Severity Count
🔴 Critical 0
🟠 High 0
🟡 Medium 4
🟢 Low 2
Total 6

📎 Artifacts

  • SBOM (CycloneDX JSON) and Grype results available in workflow artifacts

Generated by Supply Chain Verification workflow • View Details

@codecov
Copy link
Copy Markdown

codecov Bot commented Jun 2, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@Wikid82 Wikid82 marked this pull request as ready for review June 2, 2026 15:08
Copilot AI review requested due to automatic review settings June 2, 2026 15:08
@Wikid82 Wikid82 merged commit d44e8a2 into development Jun 2, 2026
107 of 109 checks passed
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This automated merge PR propagates recent CI and documentation updates from main into development, primarily improving reliability of nightly Docker builds by reclaiming runner disk space and adding retry logic to image signing.

Changes:

  • Add a Free disk space step to the start of the two nightly multi-platform Docker build jobs to reduce “No space left on device” failures.
  • Add retry loops around cosign sign in both nightly and standard docker build workflows to handle transient signing-service errors.
  • Add/update supporting QA report and the current plan/spec documentation describing the change and validation approach.

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.

File Description
docs/reports/qa_report_2026-06-01_nightly-disk-space.md Adds a QA/security report documenting validation for the disk space reclamation step.
docs/plans/current_spec.md Updates the current spec/plan to describe the nightly disk space mitigation and acceptance criteria.
.github/workflows/nightly-build.yml Adds disk-space reclamation to nightly build jobs and adds retry logic for Cosign signing.
.github/workflows/docker-build.yml Adds retry logic for Cosign signing in the main docker build workflow.

Comment on lines +13 to +16
| Job | Step Location |
|-----|--------------|
| Charon image build | Line 158 |
| Orthrus image build | Line 390 |
Comment on lines 757 to +761
echo "Signing Docker Hub image with keyless signing..."
cosign sign --yes ${{ env.DOCKERHUB_REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}
echo "✅ Docker Hub image signed successfully"
for attempt in 1 2 3; do
if cosign sign --yes ${{ env.DOCKERHUB_REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}; then
echo "✅ Docker Hub image signed successfully"
break
Comment on lines +739 to +743
for attempt in 1 2 3; do
if cosign sign --yes ${{ env.GHCR_REGISTRY }}/${{ env.IMAGE_NAME }}@${{ steps.build-and-push.outputs.digest }}; then
echo "✅ GHCR image signed successfully"
break
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants