Pin runner images#3944
Merged
Merged
Conversation
Pin runner images to a specific OS, rather than using `latest`.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3944 +/- ##
=======================================
Coverage 95.04% 95.04%
=======================================
Files 111 111
Lines 3958 3958
Branches 801 801
=======================================
Hits 3762 3762
Misses 196 196
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Keep the required status' names as `-latest`.
There was a problem hiding this comment.
Pull request overview
Pins GitHub Actions workflows to specific runner images (instead of *-latest) to reduce variability and unexpected CI changes across the repository’s automation.
Changes:
- Updated multiple workflows to run on
ubuntu-24.04instead ofubuntu-latest. - Updated the main
build.ymlworkflow to use a matrix with explicit runner labels (Ubuntu pinned, macOS/Windows also set explicitly) and adjusted matrix fields used by the job.
Reviewed changes
Copilot reviewed 11 out of 11 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/update-dotnet-sdk.yml | Pins the labeling job runner to ubuntu-24.04. |
| .github/workflows/update-documentation.yml | Pins documentation update workflow runner to ubuntu-24.04. |
| .github/workflows/stale.yml | Pins stale-issue workflow runner to ubuntu-24.04. |
| .github/workflows/release.yml | Pins release workflow runner to ubuntu-24.04. |
| .github/workflows/ossf-scorecard.yml | Pins scorecard workflow runner to ubuntu-24.04. |
| .github/workflows/nuget-packages-published.yml | Pins publish-notification workflow runners to ubuntu-24.04. |
| .github/workflows/lint.yml | Pins lint workflow runner to ubuntu-24.04. |
| .github/workflows/dependency-review.yml | Pins dependency review workflow runner to ubuntu-24.04. |
| .github/workflows/codeql-analysis.yml | Pins CodeQL workflow runner to ubuntu-24.04. |
| .github/workflows/bump-version.yml | Pins bump-version workflow runners to ubuntu-24.04. |
| .github/workflows/build.yml | Reworks OS matrix to use explicit runner labels and pins additional jobs to ubuntu-24.04. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced May 30, 2026
Closed
Bump Swashbuckle.AspNetCore from 5.6.3 to 10.2.0
ShetyeRupa/skills-secure-repository-supply-chain#12
Closed
Open
This was referenced Jul 14, 2026
Closed
Open
Open
Open
Open
Open
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.
Pin runner images to a specific OS, rather than using
latest.