feature: Set DEFAULT_WRANGLER_VERSION to 3.x

This will ensure that wrangler-action will use the latest compatible version of Wrangler if not specified otherwise.

There are two ways to lock down the version of Wrangler for this action:

- Specify the required version in the action's parameters when implementing it in your Github Workflows.
- Add a dependency to a specific version in your package.json of the project being deployed via this action.
This commit is contained in:
Peter Bacon Darwin 2024-05-15 14:07:04 +01:00
parent 888649cb34
commit 9580f80c9e
2 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,12 @@
--- ---
"wrangler-action": patch "wrangler-action": minor
--- ---
Bumped DEFAULT_WRANGLER_VERSION to 3.52.0 feature: Set DEFAULT_WRANGLER_VERSION to 3.x
This will ensure that wrangler-action will use the latest compatible version of Wrangler if not specified otherwise.
There are two ways to lock down the version of Wrangler for this action:
- Specify the required version in the action's parameters when implementing it in your Github Workflows.
- Add a dependency to a specific version in your package.json of the project being deployed via this action.

View file

@ -16,7 +16,7 @@ import { exec, execShell } from "./exec";
import { checkWorkingDirectory, semverCompare } from "./utils"; import { checkWorkingDirectory, semverCompare } from "./utils";
import { getPackageManager } from "./packageManagers"; import { getPackageManager } from "./packageManagers";
const DEFAULT_WRANGLER_VERSION = "3.52.0"; const DEFAULT_WRANGLER_VERSION = "3.x";
/** /**
* A configuration object that contains all the inputs & immutable state for the action. * A configuration object that contains all the inputs & immutable state for the action.