Compare commits

..

1 Commits

Author SHA1 Message Date
github-actions[bot] 168bc28b70 Automatic compilation 2024-10-02 14:52:32 +00:00
+2 -2
View File
@@ -28751,7 +28751,7 @@ function getPackageManager(name, { workingDirectory = "." } = {}) {
const DEFAULT_WRANGLER_VERSION = "3.78.10";
const DEFAULT_WRANGLER_VERSION = "3.13.2";
/**
* A configuration object that contains all the inputs & immutable state for the action.
*/
@@ -28825,7 +28825,7 @@ async function installWrangler() {
// and
// `3.48.0`
const versionMatch = stdout.match(/wrangler (\d+\.\d+\.\d+)/) ??
stdout.match(/^(\d+\.\d+\.\d+)/m);
stdout.match(/^(\d+\.\d+\.\d+)/);
if (versionMatch) {
installedVersion = versionMatch[1];
}