From ae99b3785a62172a73624ed1b9675e3253859a7b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 30 Jan 2026 15:12:19 +0100 Subject: [PATCH] feat(deps)!: Update ghcr.io/renovatebot/renovate Docker tag to v43 (#993) | datasource | package | from | to | | ---------- | ---------------------------- | ------- | ------ | | docker | ghcr.io/renovatebot/renovate | 42 | 43 | | docker | ghcr.io/renovatebot/renovate | 42.92.4 | 43.0.5 | | docker | ghcr.io/renovatebot/renovate | 42.95.1 | 43.0.5 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- README.md | 6 +++--- action.yml | 2 +- src/docker.ts | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 078130f5..5944bb1b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true env: - RENOVATE_VERSION: 42.95.1 # renovate: datasource=docker depName=ghcr.io/renovatebot/renovate + RENOVATE_VERSION: 43.0.5 # renovate: datasource=docker depName=ghcr.io/renovatebot/renovate jobs: prepare: @@ -117,7 +117,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 container: - image: ghcr.io/renovatebot/renovate:42.95.1@sha256:af45fc43af24a3bbd9cc55ea6ac189d3910c988e82fa9acb93a5bb32d9f1bde5 + image: ghcr.io/renovatebot/renovate:43.0.5@sha256:13b89f7fa670111b8da022822413c688d6f63ed30aea2f05201f64ea4aa9bff6 # github hosted runners are running as `1001:127` (ubuntu:docker) options: -u 1001:0 --group-add 1000 --group-add 12021 --group-add 127 diff --git a/README.md b/README.md index 86f49002..1d5c8bd1 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,7 @@ The Renovate version to use. If omitted the action will use the [`default version`](./action.yml#L28) Docker tag. Check [the available tags on Docker Hub](https://hub.docker.com/r/renovate/renovate/tags). -This sample will use `ghcr.io/renovatebot/renovate:42.92.4` image. +This sample will use `ghcr.io/renovatebot/renovate:43.0.5` image. ```yml .... @@ -235,7 +235,7 @@ jobs: - name: Self-hosted Renovate uses: renovatebot/github-action@v45.0.0 with: - renovate-version: 42.92.4 + renovate-version: 43.0.5 token: ${{ secrets.RENOVATE_TOKEN }} ``` @@ -516,7 +516,7 @@ jobs: with: configurationFile: renovate.json5 token: ${{ secrets.RENOVATE_TOKEN }} - renovate-version: 42.92.4 + renovate-version: 43.0.5 env: # This enables the cache -- if this is set, it's not necessary to add it to renovate.json. RENOVATE_REPOSITORY_CACHE: ${{ github.event.inputs.repoCache || 'enabled' }} diff --git a/action.yml b/action.yml index d10834b6..3bf6eded 100644 --- a/action.yml +++ b/action.yml @@ -25,7 +25,7 @@ inputs: description: | Renovate version to use. required: false - default: '42' # renovate + default: '43' # renovate renovate-image: description: | Renovate docker image name. diff --git a/src/docker.ts b/src/docker.ts index 42e11393..205b7d52 100644 --- a/src/docker.ts +++ b/src/docker.ts @@ -3,7 +3,7 @@ import { warning } from '@actions/core'; export class Docker { private static readonly image = 'ghcr.io/renovatebot/renovate'; - private static readonly version = '42'; // renovate + private static readonly version = '43'; // renovate private readonly dockerImage: string; private readonly fullTag: string;