Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update node.js to v20 #2422

Merged
merged 1 commit into from
Sep 12, 2023
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ when:

variables:
- &golang_image 'golang:1.21.1'
- &node_image 'node:18-alpine'
- &node_image 'node:20-alpine'
- &xgo_image 'techknowlogick/xgo:go-1.20.2'
- &xgo_version 'go-1.20.2'

Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ depends_on:

variables:
- &golang_image 'golang:1.21.1'
- &node_image 'node:18-alpine'
- &node_image 'node:20-alpine'
- &xgo_image 'techknowlogick/xgo:go-1.20.2'
- &xgo_version 'go-1.20.2'
- &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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ when:

variables:
- &golang_image 'golang:1.21.1'
- &node_image 'node:18-alpine'
- &node_image 'node:20-alpine'

steps:
build-cli:
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ when:
- release/*

variables:
- &node_image 'node:18-alpine'
- &node_image 'node:20-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 golang:1.21-alpine as golang_image
FROM node:18-alpine
FROM node:20-alpine

RUN apk add --no-cache --update make gcc binutils-gold musl-dev && \
corepack enable
Expand Down