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: 2 additions & 0 deletions images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,14 @@ RUN printf '%s\n' \
RUN mkdir -p /usr/local/bin

# Install go-task from GitHub releases (not packaged in Wolfi).
# renovate: datasource=github-releases depName=go-task/task
ARG TASK_VERSION=v3.48.0
RUN ARCH="$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')" && \
curl -fsSL "https://github.com/go-task/task/releases/download/${TASK_VERSION}/task_linux_${ARCH}.tar.gz" | \
tar -xz -C /usr/local/bin task

# Install golangci-lint from GitHub releases (not packaged in Wolfi).
# renovate: datasource=github-releases depName=golangci/golangci-lint
ARG GOLANGCI_LINT_VERSION=v2.10.1
RUN ARCH="$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')" && \
VER="${GOLANGCI_LINT_VERSION#v}" && \
Expand Down
1 change: 1 addition & 0 deletions images/hermes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ FROM ${BASE_IMAGE}

# Pin to a calendar-versioned Hermes Agent tag. Bump deliberately; releases
# are roughly weekly. Override with --build-arg HERMES_VERSION=... for dev.
# renovate: datasource=github-tags depName=NousResearch/hermes-agent
ARG HERMES_VERSION=v2026.4.16

LABEL org.opencontainers.image.source="https://github.com/NousResearch/hermes-agent" \
Expand Down
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
"config:recommended",
"customManagers:dockerfileVersions"
]
}