File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 12
12
- name : Set up Go
13
13
uses : actions/setup-go@v5
14
14
with :
15
- go-version : " 1.22 "
15
+ go-version : " 1.23.x "
16
16
cache : false
17
17
- uses : actions/cache/restore@v4
18
18
id : go-cache
Original file line number Diff line number Diff line change @@ -18,8 +18,10 @@ DOCKER_COMMAND ?= /app
18
18
19
19
# Tools
20
20
TOOLS_DIR ?= $(shell go env GOPATH) /bin
21
- GOLANGCI_LINT_VERSION ?= 1.61.0
22
- TRIVY_VERSION ?= 0.55.2
21
+ # https://github.com/golangci/golangci-lint/releases
22
+ GOLANGCI_LINT_VERSION ?= 1.62.2
23
+ # https://github.com/aquasecurity/trivy/releases
24
+ TRIVY_VERSION ?= 0.58.1
23
25
24
26
# Misc
25
27
OUTPUT_DIR ?= dist
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ A GitHub template repository for Go
13
13
14
14
## Prerequisites
15
15
16
- - [ Go 1.21 +] ( https://go.dev/doc/install )
16
+ - [ Go 1.23 +] ( https://go.dev/doc/install )
17
17
- [ GNU Make] ( https://www.gnu.org/software/make/ )
18
18
19
19
## Development instructions
@@ -55,6 +55,10 @@ make docker-run
55
55
make ci-test-docker
56
56
```
57
57
58
+ ## Deployment instructions
59
+
60
+ ### Docker Hub
61
+
58
62
To publish the docker image to Docker Hub, you need to set the following secrets in the repository settings.
59
63
60
64
``` shell
You can’t perform that action at this time.
0 commit comments