chore: change to centralized managed GitHub pool - #246
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR migrates GitHub Actions workflows in this repository to use the centralized managed UiPath runner pool (by switching runner labels to uipath-*) and hard-pins uses: action references to specific SHAs to reduce supply-chain risk.
Changes:
- Updated static
runs-on/ matrix runner labels from*-latesttouipath-*-latestacross workflows. - Pinned common GitHub Actions and third-party actions to commit SHAs (with version comments).
- Kept existing workflow logic and job structure otherwise intact.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/test.yml | Updates matrix OS labels and pins actions; also contains remaining if: checks referencing ubuntu-latest that need updating. |
| .github/workflows/publish-dev.yml | Switches to uipath-ubuntu-latest and pins actions to SHAs. |
| .github/workflows/lint.yml | Switches to uipath-ubuntu-latest and pins actions to SHAs. |
| .github/workflows/integration_tests.yml | Switches jobs to uipath-ubuntu-latest and pins checkout. |
| .github/workflows/commitlint.yml | Switches to uipath-ubuntu-latest and pins checkout/setup-node. |
| .github/workflows/cd.yml | Switches jobs to uipath-ubuntu-latest and pins checkout/setup/upload/download/publish actions. |
| .github/workflows/build-github-mcp-server.yml | Switches to uipath-ubuntu-latest and pins checkout/setup-go/setup-python/upload-artifact. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
45
to
+47
| - name: Upload coverage HTML report | ||
| if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' && always() | ||
| uses: actions/upload-artifact@v4 | ||
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 |
7 workflow file(s) modified, 27 action(s) pinned Runners migrated: ubuntu-latest ubuntu-24.04 ubuntu-22.04 ubuntu-24.04-arm ubuntu-22.04-arm ubuntu-slim ubuntu-18.04 ubuntu-20.04 windows-latest
tibrnui
force-pushed
the
chore/migrate-runners-to-uipath-images-7a21e4d2
branch
from
August 6, 2026 13:47
b605a22 to
a7328cc
Compare
|
edis-uipath
approved these changes
Aug 6, 2026
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
Moves this repository's workflows to the centralized managed GitHub pool.
uipath-in all workflow filesubuntu-latest→uipath-ubuntu-latestChanges
All workflow
.ymlfiles (including non-standard locations likeworkflows-src/) with staticruns-onvalues are updated.Dynamic expressions (
${{ ... }}) and already-prefixed images are skipped.Action Version Pinning
All
uses:references are pinned to the SHA of the latest release published ≥ 48h ago.This prevents supply-chain attacks via recently-published compromised versions.