Uh oh!
There was an error while loading. Please reload this page.
chore: change to centralized managed GitHub pool - #158
Merged
radu-mocanu merged 2 commits intoAug 10, 2026
Conversation
There was a problem hiding this comment.
Pull request overview
This PR migrates GitHub Actions workflows in uipath-runtime-python to use the centralized managed runner pool by switching runner labels to uipath-*, and hardens the workflows by pinning uses: action references to specific SHAs.
Changes:
- Update
runs-onrunner labels touipath-ubuntu-latest/uipath-windows-latestwhere applicable. - Pin GitHub Action
uses:references (e.g., checkout/setup-python/upload-artifact) to specific commit SHAs. - Apply the updates across CI, linting, commit lint, publishing, and labeling workflows.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/test.yml | Updates matrix OS labels and pins actions; includes coverage upload steps. |
| .github/workflows/test-uipath.yml | Pins actions and updates some jobs to uipath-ubuntu-latest. |
| .github/workflows/test-uipath-langchain.yml | Pins actions and updates some jobs to uipath-ubuntu-latest. |
| .github/workflows/publish-dev.yml | Moves publishing job to uipath-ubuntu-latest and pins setup actions. |
| .github/workflows/lint.yml | Moves lint job to uipath-ubuntu-latest and pins setup actions. |
| .github/workflows/commitlint.yml | Moves commitlint job to uipath-ubuntu-latest and pins setup-node. |
| .github/workflows/cd.yml | Moves build/publish jobs to uipath-ubuntu-latest and pins artifact/publish actions. |
| .github/workflows/auto-label.yml | Moves label job to uipath-ubuntu-latest and pins labeler action. |
Suppressed comments (1)
.github/workflows/test.yml:54
- This condition still checks for
matrix.os == 'ubuntu-latest', but the matrix OS value isuipath-ubuntu-latest. As written, the coverage XML artifact upload will never run for the Linux job.
- name: Upload coverage XML report
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' && always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
44
to
+46
| - 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 |
Comment on lines
22
to
+23
| - name: Checkout uipath-runtime-python | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0 |
Comment on lines
22
to
+23
| - name: Checkout uipath-runtime-python | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0 |
8 workflow file(s) modified, 44 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
tibrnuiforce-pushed
the
chore/migrate-runners-to-uipath-images-7a21e4d2
branch
from
August 6, 2026 13:47
870ba85 to
5d263afCompareradu-mocanu
approved these changes
Aug 7, 2026
radu-mocanu
approved these changes
Aug 7, 2026
tibrnuiforce-pushed
the
chore/migrate-runners-to-uipath-images-7a21e4d2
branch
from
August 10, 2026 10:36
cbe04d0 to
5d263afCompare…ices The matrix moved to uipath- runners but the step conditions still compared matrix.os against 'ubuntu-latest', so the coverage and SonarCloud steps never ran. test-uipath.yml and test-uipath-langchain.yml were still on stock runners.
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.