ci: Migrated GitHub Actions authentication from client secrets to OIDC and combined Ubuntu & Windows workflows into a single pipeline#124
Merged
Prajwal-Microsoft merged 2 commits intomainfrom Feb 23, 2026
Conversation
…dows.yml since it's no longer needed
Prajwal-Microsoft
approved these changes
Feb 23, 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.
Purpose
This pull request refactors and modernizes the GitHub Actions workflows for deployment, validation, and Docker image building. The main improvements include consolidating deployment workflows, enhancing deployment environment flexibility, standardizing Azure authentication, and improving security and environment management.
Workflow Consolidation and Environment Flexibility
deploy-v2.yml), allowing users to select the deployment environment (Codespace/Ubuntu or Local/Windows) dynamically. The Windows-specific workflow has been removed. [1] [2]Azure Authentication and Security Improvements
azure/login@v2action for Azure authentication, replacing manualaz logincommands. This change standardizes authentication and improves security by leveraging OIDC and ephemeral credentials. [1] [2] [3]id-token: writepermission is now explicitly granted where needed, supporting secure OIDC-based authentication. [1] [2] [3]Environment and Permissions Enhancements
environment: productionfield has been added to key jobs in several workflows, enabling environment protection rules and improved auditability of production deployments. [1] [2] [3] [4]Docker Build and Push Workflow Updates
azure/login@v2, removing the need to store ACR username and password as secrets.Summary of Most Important Changes
Deployment Workflow Modernization
deploy-v2.yml) and removed the Windows-specific workflow. Users can now select the deployment environment, and input validation was improved. [1] [2] [3] [4] [5] [6] [7] [8]Azure Authentication Standardization
az logincommands with theazure/login@v2action across all workflows for secure, standardized Azure authentication using OIDC. [1] [2] [3]id-token: writepermission to workflows that require OIDC authentication. [1] [2] [3]Environment and Permissions Updates
environment: productionto critical jobs for improved environment management and protection. [1] [2] [3] [4]Docker Workflow Improvements
azure/login@v2and then log in to ACR using Azure CLI, eliminating the need for ACR username/password secrets.These changes make the workflows more secure, flexible, and maintainable, and align with best practices for GitHub Actions and Azure integration.
Does this introduce a breaking change?
Golden Path Validation
Deployment Validation