Skip to content

Commit 71daba9

Browse files
authored
Merge pull request #438 from Kaniska244/node-upgrade
Update Node, NPM, Go tools and Debian
2 parents aefa886 + b9439a7 commit 71daba9

File tree

31 files changed

+4353
-4654
lines changed

31 files changed

+4353
-4654
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ENV DEVCONTAINER=true
4242

4343
# node
4444
COPY scripts/node.sh /tmp/
45-
RUN /bin/bash /tmp/node.sh 20.x
45+
RUN /bin/bash /tmp/node.sh 24.x
4646

4747
# docker-client
4848
COPY scripts/docker-client.sh /tmp/

.devcontainer/scripts/node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
VERSION=${1:-"20.x"}
2+
VERSION=${1:-"24.x"}
33
CMD=node
44
NAME="Node.js"
55

.github/workflows/ci_common.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
# Published action contains compiled JS, but we need to compile it here
134134
- uses: actions/setup-node@v6
135135
with:
136-
node-version: 20
136+
node-version: 24
137137
- name: Compile GH action
138138
run: |
139139
node --version
@@ -287,7 +287,7 @@ jobs:
287287
# Published action contains compiled JS, but we need to compile it here
288288
- uses: actions/setup-node@v6
289289
with:
290-
node-version: 20
290+
node-version: 24
291291
- name: Compile GH action
292292
run: |
293293
(cd common && npm install && npm run build)
@@ -385,7 +385,7 @@ jobs:
385385
# Published action contains compiled JS, but we need to compile it here
386386
- uses: actions/setup-node@v6
387387
with:
388-
node-version: 20
388+
node-version: 24
389389
- name: Compile GH action
390390
run: |
391391
(cd common && npm install && npm run build)
@@ -437,7 +437,7 @@ jobs:
437437
# Published action contains compiled JS, but we need to compile it here
438438
- uses: actions/setup-node@v6
439439
with:
440-
node-version: 20
440+
node-version: 24
441441
- name: Compile GH action
442442
run: |
443443
(cd common && npm install && npm run build)
@@ -475,7 +475,7 @@ jobs:
475475
# Published action contains compiled JS, but we need to compile it here
476476
- uses: actions/setup-node@v6
477477
with:
478-
node-version: 20
478+
node-version: 24
479479
- name: Compile GH action
480480
run: |
481481
(cd common && npm install && npm run build)
@@ -525,7 +525,7 @@ jobs:
525525
# Published action contains compiled JS, but we need to compile it here
526526
- uses: actions/setup-node@v6
527527
with:
528-
node-version: 20
528+
node-version: 24
529529
- name: Compile GH action
530530
run: |
531531
(cd common && npm install && npm run build)
@@ -570,7 +570,7 @@ jobs:
570570
# Published action contains compiled JS, but we need to compile it here
571571
- uses: actions/setup-node@v6
572572
with:
573-
node-version: 20
573+
node-version: 24
574574
- name: Compile GH action
575575
run: |
576576
(cd common && npm install && npm run build)
@@ -623,7 +623,7 @@ jobs:
623623
# Published action contains compiled JS, but we need to compile it here
624624
- uses: actions/setup-node@v6
625625
with:
626-
node-version: 20
626+
node-version: 24
627627
- name: Compile GH action
628628
run: |
629629
(cd common && npm install && npm run build)
@@ -668,7 +668,7 @@ jobs:
668668
# Published action contains compiled JS, but we need to compile it here
669669
- uses: actions/setup-node@v6
670670
with:
671-
node-version: 20
671+
node-version: 24
672672
- name: Compile GH action
673673
run: |
674674
(cd common && npm install && npm run build)
@@ -713,7 +713,7 @@ jobs:
713713
# Published action contains compiled JS, but we need to compile it here
714714
- uses: actions/setup-node@v6
715715
with:
716-
node-version: 20
716+
node-version: 24
717717
- name: Compile GH action
718718
run: |
719719
(cd common && npm install && npm run build)
@@ -758,7 +758,7 @@ jobs:
758758
# Published action contains compiled JS, but we need to compile it here
759759
- uses: actions/setup-node@v6
760760
with:
761-
node-version: 20
761+
node-version: 24
762762
- name: Compile GH action
763763
run: |
764764
(cd common && npm install && npm run build)
@@ -812,7 +812,7 @@ jobs:
812812
# Published action contains compiled JS, but we need to compile it here
813813
- uses: actions/setup-node@v6
814814
with:
815-
node-version: 20
815+
node-version: 24
816816
- name: Compile GH action
817817
run: |
818818
(cd common && npm install && npm run build)
@@ -857,7 +857,7 @@ jobs:
857857
# Published action contains compiled JS, but we need to compile it here
858858
- uses: actions/setup-node@v6
859859
with:
860-
node-version: 20
860+
node-version: 24
861861
- name: Compile GH action
862862
run: |
863863
(cd common && npm install && npm run build)
@@ -909,7 +909,7 @@ jobs:
909909
# Published action contains compiled JS, but we need to compile it here
910910
- uses: actions/setup-node@v6
911911
with:
912-
node-version: 20
912+
node-version: 24
913913
- name: Compile GH action
914914
run: |
915915
(cd common && npm install && npm run build)
@@ -943,7 +943,7 @@ jobs:
943943
# Published action contains compiled JS, but we need to compile it here
944944
- uses: actions/setup-node@v6
945945
with:
946-
node-version: 20
946+
node-version: 24
947947
- name: Compile GH action
948948
run: |
949949
(cd common && npm install && npm run build)
@@ -987,7 +987,7 @@ jobs:
987987
# Published action contains compiled JS, but we need to compile it here
988988
- uses: actions/setup-node@v6
989989
with:
990-
node-version: 20
990+
node-version: 24
991991
- name: Compile GH action
992992
run: |
993993
(cd common && npm install && npm run build)
@@ -1041,7 +1041,7 @@ jobs:
10411041
# Published action contains compiled JS, but we need to compile it here
10421042
- uses: actions/setup-node@v6
10431043
with:
1044-
node-version: 20
1044+
node-version: 24
10451045
- name: Compile GH action
10461046
run: |
10471047
(cd common && npm install && npm run build)
@@ -1068,7 +1068,7 @@ jobs:
10681068
# Published action contains compiled JS, but we need to compile it here
10691069
- uses: actions/setup-node@v6
10701070
with:
1071-
node-version: 20
1071+
node-version: 24
10721072
- name: Compile GH action
10731073
run: |
10741074
(cd common && npm install && npm run build)
@@ -1139,7 +1139,7 @@ jobs:
11391139
# Published action contains compiled JS, but we need to compile it here
11401140
- uses: actions/setup-node@v6
11411141
with:
1142-
node-version: 20
1142+
node-version: 24
11431143
- name: Compile GH action
11441144
run: |
11451145
(cd common && npm install && npm run build)

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ outputs:
7070
runCmdOutput:
7171
description: The output of the command specified in the runCmd input
7272
runs:
73-
using: 'node20'
73+
using: 'node24'
7474
main: 'github-action/run-main.js'
7575
post: 'github-action/run-post.js'
7676
post-if: 'success()'

0 commit comments

Comments
 (0)