Skip to content

Commit 97cafe0

Browse files
committed
upgrade nodejs from 20 to 24 and update dependencies
1 parent bbcc074 commit 97cafe0

File tree

8 files changed

+99
-189
lines changed

8 files changed

+99
-189
lines changed

.github/workflows/azure-login-negative.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- name: 'Checking out repo code'
2222
uses: actions/checkout@v4
2323

24-
- name: Set Node.js 20.x for GitHub Action
24+
- name: Set Node.js 24.x for GitHub Action
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 20.x
27+
node-version: 24.x
2828

2929
- name: 'Validate build'
3030
run: |
@@ -84,10 +84,10 @@ jobs:
8484
- name: 'Checking out repo code'
8585
uses: actions/checkout@v4
8686

87-
- name: Set Node.js 20.x for GitHub Action
87+
- name: Set Node.js 24.x for GitHub Action
8888
uses: actions/setup-node@v4
8989
with:
90-
node-version: 20.x
90+
node-version: 24.x
9191

9292
- name: 'Validate build'
9393
run: |

.github/workflows/azure-login-positive.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: 'Checking out repo code'
2121
uses: actions/checkout@v4
2222

23-
- name: Set Node.js 20.x for GitHub Action
23+
- name: Set Node.js 24.x for GitHub Action
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 20.x
26+
node-version: 24.x
2727

2828
- name: 'Validate build'
2929
run: |
@@ -112,10 +112,10 @@ jobs:
112112
- name: 'Checking out repo code'
113113
uses: actions/checkout@v4
114114

115-
- name: Set Node.js 20.x for GitHub Action
115+
- name: Set Node.js 24.x for GitHub Action
116116
uses: actions/setup-node@v4
117117
with:
118-
node-version: 20.x
118+
node-version: 24.x
119119

120120
- name: 'Validate build'
121121
run: |
@@ -247,10 +247,10 @@ jobs:
247247
- name: 'Checking out repo code'
248248
uses: actions/checkout@v4
249249

250-
- name: Set Node.js 20.x for GitHub Action
250+
- name: Set Node.js 24.x for GitHub Action
251251
uses: actions/setup-node@v4
252252
with:
253-
node-version: 20.x
253+
node-version: 24.x
254254

255255
- name: Install Azure CLI
256256
run: |

.github/workflows/azure-login-pr-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
repository: ${{ github.event.pull_request.head.repo.full_name }}
1616
ref: ${{ github.event.pull_request.head.ref }}
1717

18-
# Using 20.x version as an example
19-
- name: Set Node.js 20.x for GitHub Action
18+
# Using 24.x version as an example
19+
- name: Set Node.js 24.x for GitHub Action
2020
uses: actions/setup-node@v4
2121
with:
22-
node-version: 20.x
22+
node-version: 24.x
2323

2424
- name: installing node_modules
2525
run: npm install

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: 'Checking out repo code'
2121
uses: actions/checkout@v4
2222

23-
- name: Set Node.js 20.x for GitHub Action
23+
- name: Set Node.js 24.x for GitHub Action
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 20.x
26+
node-version: 24.x
2727

2828
- name: 'Validate build'
2929
run: |

.github/workflows/markdownlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Use Node.js
1212
uses: actions/setup-node@v4
1313
with:
14-
node-version: 20.x
14+
node-version: 24.x
1515
- name: Run Markdownlint
1616
run: |
1717
npm i -g markdownlint-cli2

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ branding:
3838
icon: 'login.svg'
3939
color: 'blue'
4040
runs:
41-
using: 'node20'
41+
using: 'node24'
4242
main: 'lib/main/index.js'
4343
post-if: (!env.AZURE_LOGIN_POST_CLEANUP || env.AZURE_LOGIN_POST_CLEANUP != 'false')
4444
post: 'lib/cleanup/index.js'

0 commit comments

Comments
 (0)