Skip to content

Commit 41fca1b

Browse files
authored
Updated to use node24 (#197)
1 parent cbea6ec commit 41fca1b

7 files changed

Lines changed: 24 additions & 22 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
uses: actions/checkout@v4
1818

1919
- name: Setup Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v6
2121
with:
22-
node-version: "20.x"
22+
node-version: "24.x"
2323

2424
- run: sudo npm i -g @vercel/ncc
2525

.github/workflows/ci-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
creds: ${{ secrets.AZURE_CREDENTIALS }}
1616

1717
- name: Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v6
1919
with:
20-
node-version: "20.x"
20+
node-version: "24.x"
2121

2222
- run: npm install --production
2323

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
basic_test:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: azure/login@v2
11+
- uses: azure/login@v3
1212
with:
1313
creds: ${{ secrets.AZURE_CREDENTIALS }}
1414

@@ -69,7 +69,7 @@ jobs:
6969
os_test:
7070
runs-on: windows-latest
7171
steps:
72-
- uses: azure/login@v2
72+
- uses: azure/login@v3
7373
with:
7474
creds: ${{ secrets.AZURE_CREDENTIALS }}
7575

.github/workflows/pr-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out source code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616

1717
- name: Setup Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v6
1919
with:
20-
node-version: "20.x"
20+
node-version: "24.x"
2121

2222
- name: Install dependencies
2323
run: |
@@ -83,12 +83,12 @@ jobs:
8383
runs-on: windows-latest
8484
steps:
8585
- name: Check out source code
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v6
8787

8888
- name: Setup Node.js
89-
uses: actions/setup-node@v4
89+
uses: actions/setup-node@v6
9090
with:
91-
node-version: "20.x"
91+
node-version: "24.x"
9292

9393
- name: Install dependencies
9494
run: |

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ branding:
1313
icon: 'login.svg'
1414
color: 'blue'
1515
runs:
16-
using: 'node20'
16+
using: 'node24'
1717
main: 'dist/index.js'

package-lock.json

Lines changed: 10 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@actions/core": "^1.10.0",
2222
"@actions/exec": "^1.0.1",
2323
"@actions/io": "^1.0.1",
24-
"@types/node": "^20.11.1"
24+
"@types/node": "^24.0.0"
2525
},
2626
"bugs": {
2727
"url": "https://github.com/Azure/CLI/issues"

0 commit comments

Comments
 (0)