Skip to content

Commit

Permalink
deps(go): Bump golang to 1.21.9
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotcourant committed Apr 19, 2024
1 parent a21f780 commit a3af70e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
npm

RUN npm install -g pnpm
RUN wget -c https://golang.org/dl/go1.21.7.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.21.7.linux-amd64.tar.gz
RUN wget -c https://golang.org/dl/go1.21.9.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.21.9.linux-amd64.tar.gz
ENV GOPATH /home/go
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH:
Expand Down
2 changes: 1 addition & 1 deletion cmake/backend.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(GO_MIN_VERSION "1.21.0")
set(GO_MIN_VERSION "1.21.9")

# GO_MODULES is only a marker file to indicate that modules have actually been fetched.
set(GO_MODULES ${CMAKE_BINARY_DIR}/go-dependencies-marker.txt)
Expand Down
2 changes: 1 addition & 1 deletion compose/docker-compose.monetr.yaml.in
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:
- /build/compose/ui-entrypoint.sh
monetr:
tty: true # Makes color output work nicely.
image: golang:1.21.7
image: golang:1.21.9
user: "${UID:-0}:${GID:-0}"
restart: always # If something goes wrong just restart the container, this is for development only.
working_dir: /build
Expand Down

0 comments on commit a3af70e

Please sign in to comment.