Skip to content

Commit

Permalink
📣 Update golang Docker tag
Browse files Browse the repository at this point in the history
| datasource | package | from | to   |
| ---------- | ------- | ---- | ---- |
| docker     | golang  | 1.22 | 1.23 |
| docker     | golang  | 1.18 | 1.23 |
| docker     | golang  | 1.21 | 1.22 |
| docker     | golang  | 1.21 | 1.23 |
  • Loading branch information
renovate-bot committed Oct 4, 2024
1 parent 4ccde3a commit 68270ad
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/concourse-github-pr-resource/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ADD apps/concourse-github-pr-resource/scripts/install_git_crypt.sh install_git_c
RUN ./install_git_crypt.sh && rm ./install_git_crypt.sh
RUN rm -rf scripts

FROM golang:1.21 as builder
FROM golang:1.23 as builder
WORKDIR /go/src/github.com/telia-oss/github-pr-resource
ENV GOOS=$GOOS
ENV GOARCH=$GOARCH
Expand Down
2 changes: 1 addition & 1 deletion apps/error-pages/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk update && apk upgrade && \
RUN git clone -b $VERSION https://github.com/tarampampam/error-pages.git /source

# this stage is used to build the application
FROM golang:1.21-bullseye AS builder
FROM golang:1.23-bullseye AS builder

COPY --from=cloner /source/go.* /src/

Expand Down
2 changes: 1 addition & 1 deletion apps/krantorbox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk update && apk upgrade && \

RUN git clone --depth 1 https://gitlab.com/book2566/krantorbox.git /source

FROM golang:1.22-alpine
FROM golang:1.23-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion apps/seonaut/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN apk update && apk upgrade && \

RUN git clone https://github.com/StJudeWasHere/seonaut.git /source

FROM golang:1.21-alpine3.18 AS builder
FROM golang:1.22-alpine3.18 AS builder

RUN mkdir /app
COPY --from=cloner /source/. /app
Expand Down
2 changes: 1 addition & 1 deletion apps/threadfin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# First stage. Building a binary
# -----------------------------------------------------------------------------
FROM golang:1.18 AS builder
FROM golang:1.23 AS builder

ARG VERSION
# Download the source code
Expand Down
2 changes: 1 addition & 1 deletion apps/volsync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN git clone https://github.com/backube/volsync.git /source
## Upstream Dockerfile
######################################################################
# Establish a common builder image for all golang-based images
FROM golang:1.22 AS golang-builder
FROM golang:1.23 AS golang-builder
USER root
WORKDIR /workspace
# We don't vendor modules. Enforce that behavior
Expand Down

0 comments on commit 68270ad

Please sign in to comment.