fix: downgrade undici as it has a breaking change (#1219)

This commit is contained in:
Tom Hu
2024-01-19 09:13:47 -08:00
committed by GitHub
parent c256d56669
commit 22b99ac1d7
4 changed files with 806 additions and 309 deletions

1048
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

37
package-lock.json generated
View File

@@ -13,7 +13,7 @@
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"openpgp": "5.11",
"undici": "^6.3.0"
"undici": "5.28.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",
@@ -74,17 +74,6 @@
"undici": "^5.25.4"
}
},
"node_modules/@actions/http-client/node_modules/undici": {
"version": "5.28.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
"dependencies": {
"@fastify/busboy": "^2.0.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@actions/io": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.2.tgz",
@@ -4927,14 +4916,14 @@
}
},
"node_modules/undici": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-6.3.0.tgz",
"integrity": "sha512-zkSMOXs2topAR1LF0PxAaNNvhdX4LYEcmRMJLMh3mjgfZpBtc/souXOp4aYiR5Q46HrBPA2/8DkEZhD3eNFE1Q==",
"version": "5.28.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
"dependencies": {
"@fastify/busboy": "^2.0.0"
},
"engines": {
"node": ">=18.0"
"node": ">=14.0"
}
},
"node_modules/undici-types": {
@@ -5177,16 +5166,6 @@
"requires": {
"tunnel": "^0.0.6",
"undici": "^5.25.4"
},
"dependencies": {
"undici": {
"version": "5.28.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
"requires": {
"@fastify/busboy": "^2.0.0"
}
}
}
},
"@actions/io": {
@@ -8760,9 +8739,9 @@
"dev": true
},
"undici": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/undici/-/undici-6.3.0.tgz",
"integrity": "sha512-zkSMOXs2topAR1LF0PxAaNNvhdX4LYEcmRMJLMh3mjgfZpBtc/souXOp4aYiR5Q46HrBPA2/8DkEZhD3eNFE1Q==",
"version": "5.28.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
"requires": {
"@fastify/busboy": "^2.0.0"
}

View File

@@ -27,7 +27,7 @@
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"openpgp": "5.11",
"undici": "^6.3.0"
"undici": "5.28.2"
},
"devDependencies": {
"@types/jest": "^29.5.11",