Skip to content

Commit 6a8bbb2

Browse files
authored
Support for Go 1.22 (#138)
1 parent f3b8c36 commit 6a8bbb2

File tree

9 files changed

+27
-27
lines changed

9 files changed

+27
-27
lines changed

.github/workflows/build.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v3
11-
- name: Set up go 1.21
10+
uses: actions/checkout@v4
11+
- name: Set up go 1.22
1212
uses: actions/setup-go@v4
1313
with:
14-
go-version: '1.21'
14+
go-version: '1.22'
1515
id: go
1616
- name: Build
1717
run: go build .
@@ -30,12 +30,12 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232
matrix:
33-
go: [ '1.11', '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20' ]
33+
go: [ '1.11', '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20', '1.21' ]
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
- name: Set up Go ${{ matrix.go }}
38-
uses: actions/setup-go@v4
38+
uses: actions/setup-go@v5
3939
with:
4040
go-version: ${{ matrix.go }}
4141
id: go

.github/workflows/verify-templates.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
frontend: [angular, vue, react]
1717
steps:
1818
- name: Checkout project
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
- name: Set up Go
21-
uses: actions/setup-go@v4
21+
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.21'
23+
go-version: '1.22'
2424
- name: Generate application
2525
run: go run main.go init --db ${{ matrix.db }} --frontend ${{ matrix.frontend }} app
2626
- name: Start the application

static/generated.go

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

templates/mongo.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ COPY webapp /webapp
33
WORKDIR /webapp
44
RUN npm install && npm run build
55

6-
FROM golang:1.21.1-alpine3.18 AS GO_BUILD
6+
FROM golang:1.22.1-alpine3.18 AS GO_BUILD
77
RUN apk update && apk add build-base
88
COPY server /server
99
WORKDIR /server
1010
RUN go build -o /go/bin/server
1111

12-
FROM alpine:3.18.3
12+
FROM alpine:3.18.6
1313
COPY --from=JS_BUILD /webapp/build* ./webapp/
1414
COPY --from=GO_BUILD /go/bin/server ./
1515
CMD ./server

templates/mongo.server/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module project-name
22

3-
go 1.21
3+
go 1.22
44

55
require go.mongodb.org/mongo-driver v1.12.0
66

templates/mysql.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ COPY webapp /webapp
33
WORKDIR /webapp
44
RUN npm install && npm run build
55

6-
FROM golang:1.21.1-alpine3.18 AS GO_BUILD
6+
FROM golang:1.22.1-alpine3.18 AS GO_BUILD
77
COPY server /server
88
WORKDIR /server
99
RUN go build -o /go/bin/server
1010

11-
FROM alpine:3.18.3
11+
FROM alpine:3.18.6
1212
COPY --from=JS_BUILD /webapp/build* ./webapp/
1313
COPY --from=GO_BUILD /go/bin/server ./
1414
CMD ./server

templates/mysql.server/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module project-name
22

3-
go 1.21
3+
go 1.22
44

55
require github.com/go-sql-driver/mysql v1.7.1

templates/postgres.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ COPY webapp /webapp
33
WORKDIR /webapp
44
RUN npm install && npm run build
55

6-
FROM golang:1.21.1-alpine3.18 AS GO_BUILD
6+
FROM golang:1.22.1-alpine3.18 AS GO_BUILD
77
COPY server /server
88
WORKDIR /server
99
RUN go build -o /go/bin/server
1010

11-
FROM alpine:3.18.3
11+
FROM alpine:3.18.6
1212
COPY --from=JS_BUILD /webapp/build* ./webapp/
1313
COPY --from=GO_BUILD /go/bin/server ./
1414
CMD ./server

templates/postgres.server/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module project-name
22

3-
go 1.21
3+
go 1.22
44

55
require github.com/lib/pq v1.10.9

0 commit comments

Comments
 (0)