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 .woodpecker/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variables:
- &golang_image 'docker.io/golang:1.26'
- &node_image 'docker.io/node:24-alpine'
- &alpine_image 'docker.io/alpine:3.23'
- &alpine_image 'docker.io/alpine:3.24'
- path: &when_path
- 'docs/**'
- '.woodpecker/docs.yaml'
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ steps:
- echo -e "\nLast checked:$(date)" >> links.md

- name: Update issue
image: docker.io/alpine:3.23
image: docker.io/alpine:3.24
depends_on: links
environment:
GITHUB_TOKEN:
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ steps:
version: 3.6.2

- name: check-feature-docs
image: docker.io/alpine:3.23
image: docker.io/alpine:3.24
depends_on: []
commands:
- apk add --no-cache -q jq && ./.woodpecker/check-feature-docs.sh
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.agent.alpine.multiarch
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg \
make build-agent

FROM docker.io/alpine:3.23
FROM docker.io/alpine:3.24

RUN apk add -U --no-cache ca-certificates && \
adduser -u 1000 -g 1000 woodpecker -D && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.cli.alpine.multiarch.rootless
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/go/pkg \
make build-cli

FROM docker.io/alpine:3.23
FROM docker.io/alpine:3.24

WORKDIR /woodpecker

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.server.alpine.multiarch.rootless
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/alpine:3.23
FROM docker.io/alpine:3.24

ARG TARGETOS TARGETARCH
RUN apk add -U --no-cache ca-certificates && \
Expand Down