mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-27 12:14:45 +01:00
Bump default wrangler version to 3.90.0
This commit is contained in:
parent
3c6e4da7b3
commit
9fed19aa4e
3 changed files with 9 additions and 4 deletions
5
.changeset/rich-maps-hide.md
Normal file
5
.changeset/rich-maps-hide.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"wrangler-action": minor
|
||||||
|
---
|
||||||
|
|
||||||
|
Bump default wrangler version to 3.90.0
|
|
@ -5,7 +5,7 @@ import { getPackageManager } from "./packageManagers";
|
||||||
import { checkWorkingDirectory } from "./utils";
|
import { checkWorkingDirectory } from "./utils";
|
||||||
import { main, WranglerActionConfig } from "./wranglerAction";
|
import { main, WranglerActionConfig } from "./wranglerAction";
|
||||||
|
|
||||||
const DEFAULT_WRANGLER_VERSION = "3.81.0";
|
const DEFAULT_WRANGLER_VERSION = "3.90.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
|
@ -14,9 +14,9 @@ const OutputEntryPagesDeployment = OutputEntryBase.merge(
|
||||||
url: z.string().optional(),
|
url: z.string().optional(),
|
||||||
alias: z.string().optional(),
|
alias: z.string().optional(),
|
||||||
environment: z.enum(["production", "preview"]),
|
environment: z.enum(["production", "preview"]),
|
||||||
// optional, added in wrangler@TBD
|
// optional, added in wrangler@3.89.0
|
||||||
production_branch: z.string().optional(),
|
production_branch: z.string().optional(),
|
||||||
// optional, added in wrangler@TBD
|
// optional, added in wrangler@3.89.0
|
||||||
stages: z
|
stages: z
|
||||||
.array(
|
.array(
|
||||||
z.object({
|
z.object({
|
||||||
|
@ -40,7 +40,7 @@ const OutputEntryPagesDeployment = OutputEntryBase.merge(
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
.optional(),
|
.optional(),
|
||||||
// optional, added in wrangler@TBD
|
// optional, added in wrangler@3.89.0
|
||||||
deployment_trigger: z
|
deployment_trigger: z
|
||||||
.object({
|
.object({
|
||||||
metadata: z.object({
|
metadata: z.object({
|
||||||
|
|
Loading…
Reference in a new issue