fix: upgrade Bun setup version to latest to support modern lockfile format

This commit is contained in:
MythEclipse
2026-05-18 08:53:44 +07:00
parent c0827b09c5
commit 910d29d5b9
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
- name: Setup Bun - name: Setup Bun
uses: oven-sh/setup-bun@v2 uses: oven-sh/setup-bun@v2
with: with:
bun-version: 1.1 bun-version: latest
- name: Install dependencies - name: Install dependencies
run: bun install --frozen-lockfile run: bun install --frozen-lockfile
+2 -2
View File
@@ -1,5 +1,5 @@
# Stage 1: Builder # Stage 1: Builder
FROM oven/bun:1.1-alpine AS builder FROM oven/bun:alpine AS builder
WORKDIR /usr/src/app WORKDIR /usr/src/app
@@ -16,7 +16,7 @@ RUN bun run lint
RUN bun run build RUN bun run build
# Stage 2: Runner # Stage 2: Runner
FROM oven/bun:1.1-slim AS runner FROM oven/bun:slim AS runner
WORKDIR /usr/src/app WORKDIR /usr/src/app