Conversation
There was a problem hiding this comment.
Pull request overview
Introduces a new composite GitHub Action to make artifact uploads more resilient to transient GitHub Actions infrastructure failures, and updates GoFortress workflows to use it.
Changes:
- Added
.github/actions/upload-artifact-resilientcomposite action implementing 3 upload attempts with delays andoverwrite: true. - Updated 8 GoFortress workflows to use the new resilient upload action and its
artifact-name/artifact-pathinputs. - Bumped tool versions in
.github/envfor go-pre-commit and go-coverage.
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/actions/upload-artifact-resilient/action.yml | New composite action providing step-level retry for artifact uploads. |
| .github/workflows/fortress-benchmarks.yml | Switch benchmark artifact uploads to the resilient upload action. |
| .github/workflows/fortress-code-quality.yml | Switch code-quality log uploads (vet/lint/format) to the resilient upload action. |
| .github/workflows/fortress-completion-statistics.yml | Switch LOC stats upload to the resilient upload action. |
| .github/workflows/fortress-coverage.yml | Switch multiple coverage-related artifact uploads to the resilient upload action. |
| .github/workflows/fortress-security-scans.yml | Switch security scan log uploads to the resilient upload action. |
| .github/workflows/fortress-test-fuzz.yml | Switch fuzz outputs upload to the resilient upload action. |
| .github/workflows/fortress-test-matrix.yml | Switch CI results + coverage data uploads to the resilient upload action. |
| .github/workflows/fortress-test-validation.yml | Switch validation summary upload to the resilient upload action. |
| .github/env/10-pre-commit.env | Update GO_PRE_COMMIT_VERSION to v1.6.2. |
| .github/env/10-coverage.env | Update GO_COVERAGE_VERSION to v1.3.7. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
What Changed
.github/actions/upload-artifact-resilient/action.ymlthat provides resilient artifact uploads with step-level retry logic (3 attempts with escalating delays of 10s, 30s)overwrite: trueon all upload attempts to handle partially-finalized artifactsACTIONS_UPLOAD_RETRY_COUNT=3environment variable for defense-in-depth against 5xx errors.github/env/10-coverage.envand.github/env/10-pre-commit.envfilesWhy It Was Necessary
Testing Performed
Impact / Risk
continue-on-error: truedefault prevents workflow failures