chore: atualiza Bun para versao 1.3.4
Some checks failed
CI/CD Web + Desktop / Detect changes (push) Successful in 5s
Quality Checks / Lint, Test and Build (push) Successful in 4m1s
CI/CD Web + Desktop / Deploy Convex functions (push) Has been skipped
CI/CD Web + Desktop / Deploy (VPS Linux) (push) Has been cancelled

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
esdrasrenan 2025-12-16 23:55:57 -03:00
parent 52452f3023
commit 2bdc5ae882
3 changed files with 5 additions and 5 deletions

View file

@ -73,7 +73,7 @@ jobs:
- name: Setup Bun
uses: https://github.com/oven-sh/setup-bun@v2
with:
bun-version: 1.3.1
bun-version: 1.3.4
- name: Sync workspace to APP_DIR (preserving local env)
run: |

View file

@ -25,7 +25,7 @@ jobs:
- name: Setup Bun
uses: https://github.com/oven-sh/setup-bun@v2
with:
bun-version: 1.3.1
bun-version: 1.3.4
- name: Install dependencies
run: bun install --frozen-lockfile

View file

@ -1,4 +1,4 @@
# Runtime image with Node 22 + Bun 1.3.2 and build toolchain preinstalled
# Runtime image with Node 22 + Bun 1.3.4 and build toolchain preinstalled
FROM node:22-bullseye-slim
ENV BUN_INSTALL=/root/.bun
@ -17,9 +17,9 @@ RUN apt-get update -y \
git \
&& rm -rf /var/lib/apt/lists/*
# Install Bun 1.3.2
# Install Bun 1.3.4
RUN curl -fsSL https://bun.sh/install \
| bash -s -- bun-v1.3.2 \
| bash -s -- bun-v1.3.4 \
&& ln -sf /root/.bun/bin/bun /usr/local/bin/bun \
&& ln -sf /root/.bun/bin/bun /usr/local/bin/bunx