Skip to content

Commit

Permalink
set default bun version to 1.0.25
Browse files Browse the repository at this point in the history
set default bun version to 1.0.25
  • Loading branch information
tsirysndr committed Jan 24, 2024
1 parent 93d62bd commit 3858fa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/.fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function test(
src: string | Directory | undefined = ".",
bunVersion?: string
): Promise<string> {
const BUN_VERSION = Deno.env.get("BUN_VERSION") || bunVersion || "1.0.3";
const BUN_VERSION = Deno.env.get("BUN_VERSION") || bunVersion || "1.0.25";
let result = "";
await connect(async (client: Client) => {
const context = await getDirectory(client, src);
Expand Down
4 changes: 2 additions & 2 deletions src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export async function test(
src: string | Directory | undefined = ".",
bunVersion?: string
): Promise<string> {
const BUN_VERSION = Deno.env.get("BUN_VERSION") || bunVersion || "1.0.3";
const BUN_VERSION = Deno.env.get("BUN_VERSION") || bunVersion || "1.0.25";
let result = "";
await connect(async (client: Client) => {
const context = await getDirectory(client, src);
Expand Down Expand Up @@ -66,7 +66,7 @@ export async function run(
src: string | Directory | undefined = ".",
bunVersion?: string
): Promise<string> {
const BUN_VERSION = Deno.env.get("BUN_VERSION") || bunVersion || "1.0.3";
const BUN_VERSION = Deno.env.get("BUN_VERSION") || bunVersion || "1.0.25";
let result = "";
await connect(async (client: Client) => {
const context = await getDirectory(client, src);
Expand Down

0 comments on commit 3858fa8

Please sign in to comment.