Skip to content

Commit

Permalink
chore: bump go version to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
YuukanOO committed Nov 14, 2023
1 parent 0bb10c5 commit 4d28f98
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"

- name: Vet
run: go vet ./...
Expand Down
2 changes: 1 addition & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ _Note: If you want to build the image yourself (because your platform is not sup

### From sources

You'll need **Go** installed on your machine (at least 1.20) and **Node** for the frontend stuff (at least 1.18).
You'll need **Go** installed on your machine (at least 1.21) and **Node** for the frontend stuff (at least 1.18).

_Note: on **Windows**, you will need a gcc compiler such as [tdm gcc](https://jmeubank.github.io/tdm-gcc/) to build the sqlite3 driver correctly._

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN npm ci
COPY ./cmd/serve/front .
RUN npm run build

FROM golang:1.20-alpine AS builder
FROM golang:1.21-alpine AS builder
# build-base needed to compile the sqlite3 dependency
RUN apk add --update-cache build-base
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion examples/go-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine AS builder
FROM golang:1.21-alpine AS builder
WORKDIR /app
COPY go.* ./
RUN go mod download
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/YuukanOO/seelf

go 1.20
go 1.21

require (
github.com/compose-spec/compose-go v1.13.4
Expand Down

0 comments on commit 4d28f98

Please sign in to comment.