From 080373bdb63a67a35db45a476191004c768f0a99 Mon Sep 17 00:00:00 2001 From: Jacob Andersen <19645494+simpleauthority@users.noreply.github.com> Date: Tue, 10 Oct 2023 13:17:05 -0700 Subject: [PATCH] Add bun as a package manager option in action.yml --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 6974b31..657d76a 100644 --- a/action.yml +++ b/action.yml @@ -42,6 +42,6 @@ inputs: description: "A string of environment variable names, separated by newlines. These will be bound to your Worker using the values of matching environment variables declared in `env` of this workflow." required: false packageManager: - description: "The package manager you'd like to use to install and run wrangler. If not specified, a value will be inferred based on the presence of a lockfile. Valid values: [npm, pnpm, yarn]" + description: "The package manager you'd like to use to install and run wrangler. If not specified, a value will be inferred based on the presence of a lockfile. Valid values: [npm, pnpm, yarn, bun]" required: false default: npm