Skip to content

Commit 4b361b1

Browse files
committed
chore: upgrade tasks to node 20
Signed-off-by: lstocchi <[email protected]>
1 parent d225d12 commit 4b361b1

File tree

11 files changed

+4357
-3114
lines changed

11 files changed

+4357
-3114
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
node: [ '16', '14', '10' ]
20+
node: [ '20', '16' ]
2121
name: Node ${{ matrix.node }}
2222

2323
steps:
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup Node.js environment
4040
uses: actions/setup-node@v3
4141
with:
42-
node-version: '10.x'
42+
node-version: '20.x'
4343
- run: npm run setup
4444
- run: npm install
4545
- run: npm run build
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Node.js environment
5454
uses: actions/setup-node@v3
5555
with:
56-
node-version: '10.x'
56+
node-version: '20.x'
5757
- run: npm run setup
5858
- run: npm install
5959
- run: npm run build

package-lock.json

+4,313-3,063
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+24-24
Original file line numberDiff line numberDiff line change
@@ -57,32 +57,32 @@
5757
},
5858
"homepage": "https://github.com/redhat-developer/openshift-vsts#readme",
5959
"dependencies": {
60-
"@types/q": "^1.5.1",
61-
"@types/valid-url": "^1.0.2",
62-
"adm-zip": "^0.4.13",
63-
"argv-split": "^2.0.1",
64-
"azure-pipelines-task-lib": "^3.1.7",
65-
"azure-pipelines-tool-lib": "^1.3.2",
60+
"@types/q": "^1.5.8",
61+
"@types/valid-url": "^1.0.7",
62+
"adm-zip": "^0.5.16",
63+
"argv-split": "^3.2.1",
64+
"azure-pipelines-task-lib": "^5.0.0",
65+
"azure-pipelines-tool-lib": "^2.0.8",
6666
"decompress": "^4.2.1",
6767
"decompress-tar": "^4.1.1",
6868
"decompress-targz": "^4.1.1",
69-
"del-cli": "^5.0.0",
70-
"node-fetch": "^2.6.7",
69+
"del-cli": "^6.0.0",
70+
"node-fetch": "^3.3.2",
7171
"q": "^1.5.1",
72-
"semver": "^7.1.3",
72+
"semver": "^7.7.1",
7373
"substituter": "^1.3.0",
7474
"valid-url": "^1.0.9"
7575
},
7676
"devDependencies": {
7777
"@types/chai": "^4.1.6",
78-
"@types/glob": "^7.1.1",
79-
"@types/mocha": "^5.2.7",
80-
"@types/node": "^12.12.7",
81-
"@types/sinon": "^7.0.13",
82-
"@types/uuid": "^8.3.0",
78+
"@types/glob": "^8.1.0",
79+
"@types/mocha": "^10.0.10",
80+
"@types/node": "^20.3.1",
81+
"@types/sinon": "^17.0.3",
82+
"@types/uuid": "^10.0.0",
8383
"@typescript-eslint/eslint-plugin": "^2.16.0",
8484
"@typescript-eslint/parser": "^2.16.0",
85-
"chai": "^4.2.0",
85+
"chai": "4.5.0",
8686
"chai-fs": "^2.0.0",
8787
"commit-message-validator": "^0.1.6",
8888
"copy-node-modules": "^1.0.4",
@@ -91,19 +91,19 @@
9191
"eslint-config-prettier": "^6.7.0",
9292
"eslint-import-resolver-typescript": "^2.0.0",
9393
"eslint-plugin-header": "^3.0.0",
94-
"eslint-plugin-import": "2.18.2",
94+
"eslint-plugin-import": "2.22.1",
9595
"eslint-plugin-json": "^2.0.1",
9696
"eslint-plugin-prettier": "^3.1.1",
9797
"istanbul": "^0.4.5",
98-
"mocha": "^6.0",
98+
"mocha": "^7.0",
9999
"mocha-jenkins-reporter": "^0.4.8",
100-
"mocha-junit-reporter": "^1.18.0",
101-
"mocha-simple-html-reporter": "^1.1.0",
102-
"prettier": "^1.14.3",
100+
"mocha-junit-reporter": "^2.2.1",
101+
"mocha-simple-html-reporter": "^2.0.0",
102+
"prettier": "^3.5.1",
103103
"remap-istanbul": "^0.13.0",
104-
"sinon": "^7.4.2",
105-
"ts-mocha": "^6.0",
106-
"ts-node": "^7.0.1",
107-
"typescript": "^4.0.2"
104+
"sinon": "^19.0.2",
105+
"ts-mocha": "^10.1.0",
106+
"ts-node": "^10.9.2",
107+
"typescript": "^5.7.3"
108108
}
109109
}

src/oc-condition.ts

-4
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ export class ConditionHandler {
6868
return status;
6969
}
7070

71-
static async sleep(ms: number):Promise<NodeJS.Timeout> {
72-
return new Promise(resolve => setTimeout(resolve, ms));
73-
}
74-
7571
static getConditionCommandListener(resource: string): string {
7672
return `get ${resource} -o name --watch=true`;
7773
}

src/oc-install.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { BinaryVersion, FindBinaryStatus } from './utils/exec_helper';
1313

1414
import tl = require('azure-pipelines-task-lib/task');
1515
import path = require('path');
16-
import fetch = require('node-fetch');
1716

1817
export class InstallHandler {
1918
/**
@@ -268,6 +267,7 @@ export class InstallHandler {
268267
let url = InstallHandler.ocBundleURL(version.value, osType, false);
269268
let findURLofLatest = !url;
270269
if (url) {
270+
const { default: fetch } = await import('node-fetch'); // Dynamic import
271271
// check if url is valid otherwise take the latest stable oc cli for this version
272272
const response = await fetch(url, { method: 'HEAD' });
273273
findURLofLatest = !response.ok;

tasks/config-map/task.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
}
2626
],
2727
"version": {
28-
"Major": 3,
28+
"Major": 4,
2929
"Minor": 0,
30-
"Patch": 2
30+
"Patch": 1
3131
},
32-
"minimumAgentVersion": "2.144.0",
32+
"minimumAgentVersion": "3.232.1",
3333
"instanceNameFormat": "config-map $(message)",
3434
"inputs": [
3535
{
@@ -151,7 +151,7 @@
151151
}
152152
],
153153
"execution": {
154-
"Node10": {
154+
"Node20_1": {
155155
"target": "lib/config-map-task.js",
156156
"workingDirectory": "$(currentDirectory)"
157157
}

tasks/oc-cmd/task.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
}
2525
],
2626
"version": {
27-
"Major": 3,
27+
"Major": 4,
2828
"Minor": 0,
29-
"Patch": 2
29+
"Patch": 1
3030
},
31-
"minimumAgentVersion": "2.144.0",
31+
"minimumAgentVersion": "3.232.1",
3232
"instanceNameFormat": "oc-cmd $(message)",
3333
"inputs": [
3434
{
@@ -138,7 +138,7 @@
138138
}
139139
],
140140
"execution": {
141-
"Node10": {
141+
"Node20_1": {
142142
"target": "lib/oc-exec-task.js",
143143
"workingDirectory": "$(currentDirectory)"
144144
}

tasks/oc-conditional-cmd/task.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
}
2525
],
2626
"version": {
27-
"Major": 3,
27+
"Major": 4,
2828
"Minor": 0,
29-
"Patch": 2
29+
"Patch": 1
3030
},
31-
"minimumAgentVersion": "2.144.0",
31+
"minimumAgentVersion": "3.232.1",
3232
"instanceNameFormat": "Oc Conditional Cmd",
3333
"inputs": [
3434
{
@@ -178,7 +178,7 @@
178178
}
179179
],
180180
"execution": {
181-
"Node10": {
181+
"Node20_1": {
182182
"target": "lib/oc-conditional-exec-task.js",
183183
"workingDirectory": "$(currentDirectory)"
184184
}

tasks/oc-setup/task.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
}
2626
],
2727
"version": {
28-
"Major": 3,
28+
"Major": 4,
2929
"Minor": 0,
30-
"Patch": 2
30+
"Patch": 1
3131
},
32-
"minimumAgentVersion": "2.144.0",
32+
"minimumAgentVersion": "3.232.1",
3333
"instanceNameFormat": "oc-setup $(message)",
3434
"inputs": [
3535
{
@@ -112,7 +112,7 @@
112112
}
113113
],
114114
"execution": {
115-
"Node10": {
115+
"Node20_1": {
116116
"target": "lib/oc-setup-task.js",
117117
"workingDirectory": "$(currentDirectory)"
118118
}

test/index.debug.ts

-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ export function run(): Promise<void> {
1616
// Create the mocha test
1717
const mocha = new Mocha({
1818
ui: 'tdd',
19-
useColors: true,
2019
timeout: 50000,
2120
slow: 50000
2221
});
23-
mocha.useColors(true);
2422

2523
const testsRoot = path.resolve(__dirname);
2624

test/oc-auth.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import * as Task from 'azure-pipelines-task-lib/task';
1616
import path = require('path');
1717

1818
const chai = require('chai');
19-
chai.use(require('chai-fs'));
2019

2120
const { expect } = chai;
2221

0 commit comments

Comments
 (0)