Skip to content

Commit

Permalink
Merge pull request #858 from atc0005/update-golang-1.20.0-images-to-1…
Browse files Browse the repository at this point in the history
….20.1

Update Go 1.20.0 images to 1.20.1
  • Loading branch information
atc0005 authored Feb 15, 2023
2 parents 42cd6e5 + 6aacfa5 commit b56c2f2
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion stable/build/alpine-x64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# https://hub.docker.com/_/golang

FROM golang:1.20-alpine3.16
FROM golang:1.20.1-alpine3.16

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down
2 changes: 1 addition & 1 deletion stable/build/alpine-x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# https://hub.docker.com/_/golang

FROM i386/golang:1.20-alpine3.16
FROM i386/golang:1.20.1-alpine3.16

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down
2 changes: 1 addition & 1 deletion stable/build/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# https://hub.docker.com/_/golang

FROM golang:1.20
FROM golang:1.20.1

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down
2 changes: 1 addition & 1 deletion stable/build/mirror/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# https://hub.docker.com/_/golang

FROM golang:1.20
FROM golang:1.20.1

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down
2 changes: 1 addition & 1 deletion stable/combined/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# https://hub.docker.com/_/golang

FROM golang:1.20
FROM golang:1.20.1

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down
4 changes: 2 additions & 2 deletions stable/linting/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# builder image
# use the same environment as our final image for binary compatibility
# FROM golangci/golangci-lint:v1.45.0-alpine as builder
FROM golang:1.20 as builder
FROM golang:1.20.1 as builder

ENV GOLANGCI_LINT_VERSION="v1.51.1"
ENV STATICCHECK_VERSION="v0.4.1"
Expand All @@ -33,7 +33,7 @@ RUN echo "Installing staticcheck@${STATICCHECK_VERSION}" \

# For CI "linting only" use
# FROM golangci/golangci-lint:v1.45.0-alpine
FROM golang:1.20 as final
FROM golang:1.20.1 as final

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down
4 changes: 2 additions & 2 deletions unstable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# https://hub.docker.com/_/golang

FROM golang:1.20 as builder
FROM golang:1.20.1 as builder

# A current dev branch build (mirrored to fork) is used for pre-release Go
# versions, otherwise the latest upstream build of the tool is installed in
Expand Down Expand Up @@ -53,7 +53,7 @@ RUN echo "Installing golangci-lint@${GOLANGCI_LINT_VERSION}" \
&& golangci-lint --version


FROM golang:1.20 as final
FROM golang:1.20.1 as final

# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
LABEL org.opencontainers.image.source="https://github.com/atc0005/go-ci"
Expand Down

0 comments on commit b56c2f2

Please # to comment.