Skip to content

Commit 0e1d2f0

Browse files
committed
multi: remove Go version consistency warning comment
We can now remove these comments now that our linter performs Go version consistency checks across Dockerfile files and YAML files.
1 parent e315323 commit 0e1d2f0

File tree

7 files changed

+2
-39
lines changed

7 files changed

+2
-39
lines changed

.github/workflows/main.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@ env:
1919
# go needs absolute directories, using the $HOME variable doesn't work here.
2020
GOPATH: /home/runner/work/go
2121

22-
# If you change this value, please change it in the following files as well:
23-
# /Dockerfile
24-
# /dev.Dockerfile
25-
# /make/builder.Dockerfile
26-
# /taprpc/Dockerfile
27-
# /tools/Dockerfile
2822
GO_VERSION: '1.21.0'
2923

3024
jobs:

Dockerfile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
# If you change this value, please change it in the following files as well:
2-
# /.github/workflows/main.yaml
3-
# /dev.Dockerfile
4-
# /make/builder.Dockerfile
5-
# /taprpc/Dockerfile
6-
# /tools/Dockerfile
7-
# /itest/loadtest/Dockerfile
81
FROM golang:1.21.0-alpine as builder
92

103
# Force Go to use the cgo based DNS resolver. This is required to ensure DNS

dev.Dockerfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
# If you change this value, please change it in the following files as well:
2-
# /.github/workflows/main.yaml
3-
# /Dockerfile
4-
# /make/builder.Dockerfile
5-
# /taprpc/Dockerfile
6-
# /tools/Dockerfile
7-
FROM golang:1.21.0 as builder
1+
FROM golang:1.21.0 as builder
82

93
WORKDIR /app
104

itest/loadtest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21.0 as builder
1+
FROM golang:1.21.0 as builder
22

33
WORKDIR /app
44

make/builder.Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# If you change this value, please change it in the following files as well:
2-
# /.github/workflows/main.yaml
3-
# /Dockerfile
4-
# /dev.Dockerfile
5-
# /taprpc/Dockerfile
6-
# /tools/Dockerfile
71
FROM golang:1.21.0-bookworm
82

93
MAINTAINER Olaoluwa Osuntokun <[email protected]>

taprpc/Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# If you change this value, please change it in the following files as well:
2-
# /.github/workflows/main.yaml
3-
# /Dockerfile
4-
# /dev.Dockerfile
5-
# /make/builder.Dockerfile
6-
# /tools/Dockerfile
71
FROM golang:1.21.0-bookworm
82

93
RUN apt-get update && apt-get install -y \

tools/Dockerfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# If you change this value, please change it in the following files as well:
2-
# /.github/workflows/main.yaml
3-
# /Dockerfile
4-
# /dev.Dockerfile
5-
# /make/builder.Dockerfile
6-
# /taprpc/Dockerfile
71
FROM golang:1.21.0-bookworm
82

93
RUN apt-get update && apt-get install -y git

0 commit comments

Comments
 (0)