Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/config/options/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ const options: Readonly<RenovateOptions>[] = [
description:
'Change this value to override the default Renovate sidecar image.',
type: 'string',
default: 'ghcr.io/renovatebot/base-image:13.14.2',
default: 'ghcr.io/renovatebot/base-image:13.15.0',
globalOnly: true,
deprecationMsg:
'The usage of `binarySource=docker` is deprecated, and will be removed in the future',
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
},
"volta": {
"node": "24.14.0",
"pnpm": "10.30.1"
"pnpm": "10.30.2"
},
"dependencies": {
"@aws-sdk/client-codecommit": "3.1000.0",
Expand Down Expand Up @@ -367,7 +367,7 @@
"vitest": "4.0.18",
"vitest-mock-extended": "3.1.0"
},
"packageManager": "pnpm@10.30.1",
"packageManager": "pnpm@10.30.2",
"files": [
"dist",
"renovate-schema.json"
Expand Down
8 changes: 4 additions & 4 deletions tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@ ARG BASE_IMAGE_TYPE=slim
# --------------------------------------
# slim image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:13.14.2@sha256:194050be45dce954fa66a4fd36c5ca4b9c3fe5195c4b0ca9f4bd1e2d938b2735 AS slim-base
FROM ghcr.io/renovatebot/base-image:13.15.0@sha256:7450d937bfb4f3a175127b01c3e8d345558693aba44ab683e1e123fb566ac129 AS slim-base

# --------------------------------------
# full image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:13.14.2-full@sha256:eadebb420e1b052465a0919305623c29eee3ffc6c7da6c7250753772499ab482 AS full-base
FROM ghcr.io/renovatebot/base-image:13.15.0-full@sha256:6f6b8ded2afc11c3bdb3b17f7c3b67cfd6fc354319a1b972acd7df047dea285f AS full-base

ENV RENOVATE_BINARY_SOURCE=global

# --------------------------------------
# build image
# --------------------------------------
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:13.14.2@sha256:194050be45dce954fa66a4fd36c5ca4b9c3fe5195c4b0ca9f4bd1e2d938b2735 AS build
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:13.15.0@sha256:7450d937bfb4f3a175127b01c3e8d345558693aba44ab683e1e123fb566ac129 AS build

# We want a specific node version here
# renovate: datasource=github-releases packageName=containerbase/node-prebuild versioning=node
RUN install-tool node 24.14.0

# corepack is too buggy 😞
# renovate: datasource=npm
RUN install-tool pnpm 10.30.1
RUN install-tool pnpm 10.30.2

WORKDIR /usr/local/renovate

Expand Down
Loading