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/binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ when:

variables:
- &golang_image 'docker.io/golang:1.25'
- &node_image 'docker.io/node:23-alpine'
- &node_image 'docker.io/node:24-alpine'
- &xgo_image 'docker.io/techknowlogick/xgo:go-1.25.x'

# cspell:words bindata netgo
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variables:
- &golang_image 'docker.io/golang:1.25'
- &node_image 'docker.io/node:23-alpine'
- &node_image 'docker.io/node:24-alpine'
- &xgo_image 'docker.io/techknowlogick/xgo:go-1.25.x'
- &buildx_plugin 'docker.io/woodpeckerci/plugin-docker-buildx:6.0.3'
- &platforms_release 'linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/386,linux/amd64,linux/ppc64le,linux/riscv64,linux/s390x,freebsd/arm64,freebsd/amd64,openbsd/arm64,openbsd/amd64'
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
variables:
- &golang_image 'docker.io/golang:1.25'
- &node_image 'docker.io/node:23-alpine'
- &node_image 'docker.io/node:24-alpine'
- &alpine_image 'docker.io/alpine:3.22'
- path: &when_path
- 'docs/**'
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:
- event: pull_request

- name: spellcheck
image: docker.io/node:23-alpine
image: docker.io/node:24-alpine
depends_on: []
commands:
- corepack enable
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ when:
- release/*

variables:
- &node_image 'docker.io/node:23-alpine'
- &node_image 'docker.io/node:24-alpine'
- &when
path:
# related config files
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.make
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# docker build --rm -f docker/Dockerfile.make -t woodpecker/make:local .
FROM docker.io/golang:1.25-alpine AS golang_image
FROM docker.io/node:23-alpine
FROM docker.io/node:24-alpine

RUN apk add --no-cache --update make gcc binutils-gold musl-dev && \
apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main protoc && \
Expand Down