From 2bdc5ae8823f6d845ce30f9999291f8d475bdd07 Mon Sep 17 00:00:00 2001 From: esdrasrenan Date: Tue, 16 Dec 2025 23:55:57 -0300 Subject: [PATCH] chore: atualiza Bun para versao 1.3.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .forgejo/workflows/ci-cd-web-desktop.yml | 2 +- .forgejo/workflows/quality-checks.yml | 2 +- Dockerfile.prod | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/ci-cd-web-desktop.yml b/.forgejo/workflows/ci-cd-web-desktop.yml index 7985275..ebc4edd 100644 --- a/.forgejo/workflows/ci-cd-web-desktop.yml +++ b/.forgejo/workflows/ci-cd-web-desktop.yml @@ -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: | diff --git a/.forgejo/workflows/quality-checks.yml b/.forgejo/workflows/quality-checks.yml index cf85afe..daed18b 100644 --- a/.forgejo/workflows/quality-checks.yml +++ b/.forgejo/workflows/quality-checks.yml @@ -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 diff --git a/Dockerfile.prod b/Dockerfile.prod index e08ccdc..bb79ec4 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -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