Skip to content

Commit

Permalink
feature: Set DEFAULT_WRANGLER_VERSION to 3.x
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
petebacondarwin committed May 15, 2024
1 parent 888649c commit 9580f80
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .changeset/twenty-beans-compare.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { exec, execShell } from "./exec";
import { checkWorkingDirectory, semverCompare } from "./utils";
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.
Expand Down

0 comments on commit 9580f80

Please sign in to comment.