Skip to content

Commit

Permalink
chore(deps): update golang docker tag (#2396)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 8, 2023
1 parent 0a2aa3f commit 4a7203f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .woodpecker/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ when:
event: tag

variables:
- &golang_image 'golang:1.20.2'
- &golang_image 'golang:1.21.1'
- &node_image 'node:18-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 @@ -10,7 +10,7 @@ depends_on:
- web

variables:
- &golang_image 'golang:1.20.2'
- &golang_image 'golang:1.21.1'
- &node_image 'node:18-alpine'
- &xgo_image 'techknowlogick/xgo:go-1.20.2'
- &xgo_version 'go-1.20.2'
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ when:
event: cron

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

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

variables:
- &golang_image 'golang:1.20.2'
- &golang_image 'golang:1.21.1'
- &when
- path: &when_path
# related config files
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.agent.alpine.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20 AS build
FROM --platform=$BUILDPLATFORM golang:1.21 AS build

WORKDIR /src
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.agent.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20 AS build
FROM --platform=$BUILDPLATFORM golang:1.21 AS build

WORKDIR /src
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.cli.alpine.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20 AS build
FROM --platform=$BUILDPLATFORM golang:1.21 AS build

WORKDIR /src
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.cli.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20 AS build
FROM --platform=$BUILDPLATFORM golang:1.21 AS build

WORKDIR /src
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.make
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# docker build --rm -f docker/Dockerfile.make -t woodpecker/make:local .
FROM golang:1.20-alpine as golang_image
FROM golang:1.21-alpine as golang_image
FROM node:18-alpine

RUN apk add --no-cache --update make gcc binutils-gold musl-dev && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.server.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20 AS certs
FROM --platform=$BUILDPLATFORM golang:1.21 AS certs

FROM scratch
ARG TARGETOS TARGETARCH
Expand Down

0 comments on commit 4a7203f

Please sign in to comment.