patch(0.10.0) update refs to actions - #5006
Merged
nv-dmendoza merged 2 commits intoAug 14, 2026
Merged
Conversation
The repo `NVIDIA/dsx-github-actions` was transferred to `dsx-ai-factory/dsx-github-actions`. GitHub Actions resolves action/workflow references differently depending on where they appear in a workflow file: - **Job-level reusable workflow calls** (`jobs.<id>.uses:`) are resolved at parse time. If the target can't be found, GitHub rejects the entire workflow file before any jobs run — this is what caused the hard failure in `ci.yaml` ([[run 31631294473](https://github.com/NVIDIA/infra-controller/actions/runs/31631294473)](https://github.com/NVIDIA/infra-controller/actions/runs/31631294473)). - **Step-level action references** (`steps[*].uses:`) are resolved at runtime. GitHub still follows HTTP redirects for these, so workflows like `rest-ci.yml` that only had step-level references continued to trigger and pass despite the stale org name. Because step-level references silently kept working via redirect, the breakage was not uniform — only workflows with job-level reusable workflow calls hard-failed. This PR updates all references regardless of kind for consistency and to avoid relying on redirect behavior that GitHub can revoke at any time. - [ ] **Add** - New feature or capability - [ ] **Change** - Changes in existing functionality - [ ] **Fix** - Bug fixes - [ ] **Remove** - Removed features or deprecated functionality - [x] **Internal** - Internal changes (refactoring, tests, docs, etc.) - [ ] **This PR contains breaking changes** - [ ] Unit tests added/updated - [ ] Integration tests added/updated - [ ] Manual testing performed - [ ] No testing required (docs, internal refactor, etc.)
kshivakumar-nvidia
approved these changes
Aug 14, 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.
Backports #4895
The repo
NVIDIA/dsx-github-actionswas transferred todsx-ai-factory/dsx-github-actions. GitHub Actions resolves action/workflow references differently depending on where they appear in a workflow file:jobs.<id>.uses:) are resolved at parse time. If the target can't be found, GitHub rejects the entire workflow file before any jobs run — this is what caused the hard failure inci.yaml([run 31631294473](https://github.com/NVIDIA/infra-controller/actions/runs/31631294473)).steps[*].uses:) are resolved at runtime. GitHub still follows HTTP redirects for these, so workflows likerest-ci.ymlthat only had step-level references continued to trigger and pass despite the stale org name.Because step-level references silently kept working via redirect, the breakage was not uniform — only workflows with job-level reusable workflow calls hard-failed. This PR updates all references regardless of kind for consistency and to avoid relying on redirect behavior that GitHub can revoke at any time.
Related issues
Type of Change
Breaking Changes
Testing
Additional Notes