From 18605c7e8936f4c67c725963a26b5c8abc84396c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 02:25:59 +0000 Subject: [PATCH] chore(deps): bump the all-dependencies group across 3 directories with 2 updates Bumps the all-dependencies group with 1 update in the /apps/api directory: oven/bun. Bumps the all-dependencies group with 1 update in the /apps/dashboard directory: oven/bun. Bumps the all-dependencies group with 1 update in the /apps/indexer directory: library/rust. Updates `oven/bun` from 1.3.13 to 1.3.14 Updates `oven/bun` from 1.3.13 to 1.3.14 Updates `library/rust` from 1.94 to 1.95 --- updated-dependencies: - dependency-name: oven/bun dependency-version: 1.3.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: oven/bun dependency-version: 1.3.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: library/rust dependency-version: '1.95' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] --- apps/api/Dockerfile | 4 ++-- apps/dashboard/Dockerfile | 4 ++-- apps/dashboard/Dockerfile.dev | 2 +- apps/indexer/Dockerfile | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 55732c7..f329db5 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/oven/bun:1.3.13 AS deps +FROM docker.io/oven/bun:1.3.14 AS deps WORKDIR /app COPY package.json bun.lock tsconfig.base.json tsconfig.json ./ COPY apps/api/package.json apps/api/package.json @@ -9,7 +9,7 @@ FROM deps AS build COPY . . RUN bun run --filter @sentinel/api test -FROM docker.io/oven/bun:1.3.13 AS runner +FROM docker.io/oven/bun:1.3.14 AS runner WORKDIR /app COPY --from=build /app /app ENV PORT=3001 diff --git a/apps/dashboard/Dockerfile b/apps/dashboard/Dockerfile index 4bd4b56..c5fc57e 100644 --- a/apps/dashboard/Dockerfile +++ b/apps/dashboard/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/oven/bun:1.3.13 AS deps +FROM docker.io/oven/bun:1.3.14 AS deps WORKDIR /app COPY package.json bun.lock tsconfig.base.json tsconfig.json ./ COPY apps/dashboard/package.json apps/dashboard/package.json @@ -17,7 +17,7 @@ ENV SENTINEL_BUILD_RELEASE_TAG=${SENTINEL_BUILD_RELEASE_TAG} COPY . . RUN bun run --filter @sentinel/dashboard build -FROM docker.io/oven/bun:1.3.13 AS runner +FROM docker.io/oven/bun:1.3.14 AS runner WORKDIR /app COPY --from=build /app /app EXPOSE 5173 diff --git a/apps/dashboard/Dockerfile.dev b/apps/dashboard/Dockerfile.dev index 3c55eb7..c2e88bb 100644 --- a/apps/dashboard/Dockerfile.dev +++ b/apps/dashboard/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM docker.io/oven/bun:1.3.13 +FROM docker.io/oven/bun:1.3.14 RUN apt-get update \ && apt-get install -y --no-install-recommends git \ diff --git a/apps/indexer/Dockerfile b/apps/indexer/Dockerfile index 0112ae3..4f9f4bb 100644 --- a/apps/indexer/Dockerfile +++ b/apps/indexer/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/rust:1.94 AS test +FROM docker.io/library/rust:1.95 AS test WORKDIR /app COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml COPY apps/indexer/Cargo.lock apps/indexer/Cargo.lock @@ -6,7 +6,7 @@ COPY apps/indexer/src apps/indexer/src COPY apps/indexer/tests apps/indexer/tests RUN cargo test --locked --manifest-path apps/indexer/Cargo.toml -FROM docker.io/library/rust:1.94 AS builder +FROM docker.io/library/rust:1.95 AS builder WORKDIR /app COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml COPY apps/indexer/Cargo.lock apps/indexer/Cargo.lock