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.23.1',
default: 'ghcr.io/renovatebot/base-image:13.25.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.3"
"pnpm": "10.31.0"
},
"dependencies": {
"@aws-sdk/client-codecommit": "3.1000.0",
Expand Down Expand Up @@ -362,7 +362,7 @@
"vitest": "4.0.18",
"vitest-mock-extended": "3.1.0"
},
"packageManager": "pnpm@10.30.3",
"packageManager": "pnpm@10.31.0",
"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.23.1@sha256:c966118d8cf0caa2d57d1b03a7d76f67bfabc2af51c42a8ad2643c7a620679a8 AS slim-base
FROM ghcr.io/renovatebot/base-image:13.25.0@sha256:d8886ac62dff20f8205affdc85a8244017353b107a3682b7c739f8869a8050a4 AS slim-base

# --------------------------------------
# full image
# --------------------------------------
FROM ghcr.io/renovatebot/base-image:13.23.1-full@sha256:9a36e32c31f071e4ada2753954f2b5eb465d05f2bc156404dbb602ca56713955 AS full-base
FROM ghcr.io/renovatebot/base-image:13.25.0-full@sha256:cdc66b269a3f3900355eb854424c63566e222d60ee5f2a23d915aa599bd34f89 AS full-base

ENV RENOVATE_BINARY_SOURCE=global

# --------------------------------------
# build image
# --------------------------------------
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:13.23.1@sha256:c966118d8cf0caa2d57d1b03a7d76f67bfabc2af51c42a8ad2643c7a620679a8 AS build
FROM --platform=$BUILDPLATFORM ghcr.io/renovatebot/base-image:13.25.0@sha256:d8886ac62dff20f8205affdc85a8244017353b107a3682b7c739f8869a8050a4 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.3
RUN install-tool pnpm 10.31.0

WORKDIR /usr/local/renovate

Expand Down
Loading