Skip to content

Commit d94d2d5

Browse files
Updating golang version in dockerfile (#27)
* [patch] Upgrade golang version id dockerfile * updating CODEOWNERS to include BE and infra * Ignore type checking --------- Co-authored-by: Adam Wilmore <adam@mx51.io>
1 parent 878f9b8 commit d94d2d5

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Each line is a file pattern followed by one or more owners.
33

44
# These owners will be the default owners for everything in the repo.
5-
* @mx51/data
5+
* @mx51/backend-chapter @mx51/infra
66

77
# Order is important. The last matching pattern has the most precedence.
88
# So if a pull request only touches javascript files, only these owners

action/proto/proto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ def _read_enums(self, proto_code: str) -> dict[str, dict[str, str]]:
4848
):
4949
enum_values = {}
5050
for enum_value in filter(
51-
lambda x: isinstance(x, EnumValue), enum_element.elements
51+
lambda x: isinstance(x, EnumValue), enum_element.elements # type: ignore
5252
):
5353
enum_values[enum_value.name] = enum_value.number
54-
enums[enum_element.name] = enum_values
54+
enums[enum_element.name] = enum_values # type: ignore
5555

5656
return enums

containers/golang/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22-alpine
1+
FROM golang:1.23-alpine
22

33
RUN apk update && apk add bash build-base git
44

0 commit comments

Comments
 (0)