@@ -18,12 +18,12 @@ jobs:
1818
1919 steps :
2020 - name : ' Checking out repo code'
21- uses : actions/checkout@v4
21+ uses : actions/checkout@v6
2222
23- - name : Set Node.js 20 .x for GitHub Action
24- uses : actions/setup-node@v4
23+ - name : Set Node.js 24 .x for GitHub Action
24+ uses : actions/setup-node@v6
2525 with :
26- node-version : 20 .x
26+ node-version : 24 .x
2727
2828 - name : ' Validate build'
2929 run : |
@@ -110,12 +110,12 @@ jobs:
110110
111111 steps :
112112 - name : ' Checking out repo code'
113- uses : actions/checkout@v4
113+ uses : actions/checkout@v6
114114
115- - name : Set Node.js 20 .x for GitHub Action
116- uses : actions/setup-node@v4
115+ - name : Set Node.js 24 .x for GitHub Action
116+ uses : actions/setup-node@v6
117117 with :
118- node-version : 20 .x
118+ node-version : 24 .x
119119
120120 - name : ' Validate build'
121121 run : |
@@ -203,7 +203,7 @@ jobs:
203203 - name : Run Azure Cli
204204 shell : pwsh
205205 run : |
206- $checkResult = (az account list --output json | ConvertFrom-Json).Count -eq 3
206+ $checkResult = (az account list --output json | ConvertFrom-Json).Count -eq 2
207207 if(-not $checkResult){
208208 throw "Not all checks passed!"
209209 }
@@ -245,12 +245,12 @@ jobs:
245245 environment : Automation test
246246 steps :
247247 - name : ' Checking out repo code'
248- uses : actions/checkout@v4
248+ uses : actions/checkout@v6
249249
250- - name : Set Node.js 20 .x for GitHub Action
251- uses : actions/setup-node@v4
250+ - name : Set Node.js 24 .x for GitHub Action
251+ uses : actions/setup-node@v6
252252 with :
253- node-version : 20 .x
253+ node-version : 24 .x
254254
255255 - name : Install Azure CLI
256256 run : |
@@ -265,11 +265,12 @@ jobs:
265265 - name : Install Powershell
266266 run : |
267267 apt-get update
268- apt-get install -y wget
269- wget https://ftp.debian.org/debian/pool/main/i/icu/libicu72_72.1-3_amd64.deb
270- dpkg -i libicu72_72.1-3_amd64.deb
271- wget https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell_7.5.0-1.deb_amd64.deb
272- dpkg -i powershell_7.5.0-1.deb_amd64.deb
268+ apt-get install -y wget apt-transport-https software-properties-common
269+ wget -q "https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb"
270+ dpkg -i packages-microsoft-prod.deb
271+ rm packages-microsoft-prod.deb
272+ apt-get update
273+ apt-get install -y powershell
273274
274275 - name : Check Powershell Version
275276 shell : pwsh
0 commit comments