diff --git a/.github/actions/redirection-verification/index.js b/.github/actions/redirection-verification/index.js index 84eeb39806..1f84a4d511 100644 --- a/.github/actions/redirection-verification/index.js +++ b/.github/actions/redirection-verification/index.js @@ -96,11 +96,14 @@ const verify = async () => { } catch (reqerr) { // core.debug(`issue encountered with path ${path}!!! Returned status is ${reqerr.status}. More info: `) core.info(`issue encountered with path ${path}!!! Returned status is ${reqerr.status}. More info: `) + console.log(reqerr) if(axios.isAxiosError(reqerr)) { // core.debug(reqerr.toJSON()) + core.info('Axios error.') core.info(reqerr.toJSON()) } else { console.log(reqerr) + core.info('Non-Axios error? ') core.info(JSON.stringify(reqerr)) } diff --git a/sites/upsun/package-lock.json b/sites/upsun/package-lock.json index 953900ca06..6c7e6d476c 100644 --- a/sites/upsun/package-lock.json +++ b/sites/upsun/package-lock.json @@ -18,7 +18,7 @@ "asciinema-player": "^3.0.1", "autoprefixer": "^10.4.13", "axios": "^1.7.4", - "express": "^4.21.1", + "express": "^4.21.2", "fs-extra": "^11.1.1", "js-yaml": "^4.1.0", "mermaid": "^11.2.1", @@ -6381,9 +6381,9 @@ } }, "node_modules/express": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", - "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", @@ -6404,7 +6404,7 @@ "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", + "path-to-regexp": "0.1.12", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", @@ -6419,6 +6419,10 @@ }, "engines": { "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/express/node_modules/debug": { @@ -10090,9 +10094,9 @@ "license": "MIT" }, "node_modules/path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" }, "node_modules/pathe": { "version": "1.1.2", @@ -19529,9 +19533,9 @@ } }, "express": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", - "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", + "version": "4.21.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", + "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", @@ -19552,7 +19556,7 @@ "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.10", + "path-to-regexp": "0.1.12", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", @@ -21958,9 +21962,9 @@ "version": "1.0.7" }, "path-to-regexp": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", - "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==" + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==" }, "pathe": { "version": "1.1.2", diff --git a/sites/upsun/package.json b/sites/upsun/package.json index c63caaba59..7c3892f93f 100644 --- a/sites/upsun/package.json +++ b/sites/upsun/package.json @@ -41,7 +41,7 @@ "asciinema-player": "^3.0.1", "autoprefixer": "^10.4.13", "axios": "^1.7.4", - "express": "^4.21.1", + "express": "^4.21.2", "fs-extra": "^11.1.1", "js-yaml": "^4.1.0", "mermaid": "^11.2.1",