Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@kaverma @kanika1894 @BALAGA-GAYATRI @pulkitaggarwl
@YanaXu
3 changes: 1 addition & 2 deletions .github/workflows/azure-login-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
az --version

- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 'Az CLI login with subscription'
uses: azure/login@v1
Expand Down Expand Up @@ -89,4 +89,3 @@ jobs:
- name: Post to slack
shell: bash
run: curl -X POST -H 'Content-type:application/json' --data '{"blocks":[{"type":"section","text":{"type":"mrkdwn","text":"${{steps.slack_report.outputs.report}}"}}]}' https://hooks.slack.com/services/${{SECRETS.SLACK_CHANNEL_SECRET}}

16 changes: 8 additions & 8 deletions .github/workflows/azure-login-negative.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
steps:

- name: 'Checking out repo code'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: 'Validate build'
run: |
Expand Down Expand Up @@ -82,12 +82,12 @@ jobs:

steps:
- name: 'Checking out repo code'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: 'Validate build'
run: |
Expand Down
37 changes: 19 additions & 18 deletions .github/workflows/azure-login-positive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

steps:
- name: 'Checking out repo code'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: 'Validate build'
run: |
Expand Down Expand Up @@ -110,12 +110,12 @@ jobs:

steps:
- name: 'Checking out repo code'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: 'Validate build'
run: |
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
- name: Run Azure Cli
shell: pwsh
run: |
$checkResult = (az account list --output json | ConvertFrom-Json).Count -eq 3
$checkResult = (az account list --output json | ConvertFrom-Json).Count -eq 2
if(-not $checkResult){
throw "Not all checks passed!"
}
Expand Down Expand Up @@ -245,12 +245,12 @@ jobs:
environment: Automation test
steps:
- name: 'Checking out repo code'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: Install Azure CLI
run: |
Expand All @@ -265,11 +265,12 @@ jobs:
- name: Install Powershell
run: |
apt-get update
apt-get install -y wget
wget https://ftp.debian.org/debian/pool/main/i/icu/libicu72_72.1-3_amd64.deb
dpkg -i libicu72_72.1-3_amd64.deb
wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell_7.5.0-1.deb_amd64.deb
dpkg -i powershell_7.5.0-1.deb_amd64.deb
apt-get install -y wget apt-transport-https software-properties-common
wget -q "https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb"
dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
apt-get update
apt-get install -y powershell

- name: Check Powershell Version
shell: pwsh
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/azure-login-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout from PR branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}

# Using 20.x version as an example
- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
# Using 24.x version as an example
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: installing node_modules
run: npm install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
steps:

- name: 'Checking out repo code'
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Node.js 20.x for GitHub Action
uses: actions/setup-node@v4
- name: Set Node.js 24.x for GitHub Action
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x

- name: 'Validate build'
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20.x
node-version: 24.x
- name: Run Markdownlint
run: |
npm i -g markdownlint-cli2
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ branding:
icon: 'login.svg'
color: 'blue'
runs:
using: 'node20'
using: 'node24'
main: 'lib/main/index.js'
post-if: (!env.AZURE_LOGIN_POST_CLEANUP || env.AZURE_LOGIN_POST_CLEANUP != 'false')
post: 'lib/cleanup/index.js'
Loading
Loading