Skip to content

Commit 9aa25bc

Browse files
authored
Merge pull request #22 from ks6088ts/feature/issue-21_upgrade-version
updated versions
2 parents 66ea6a8 + 17e21f0 commit 9aa25bc

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go
1313
uses: actions/setup-go@v5
1414
with:
15-
go-version: "1.22"
15+
go-version: "1.23.x"
1616
cache: false
1717
- uses: actions/cache/restore@v4
1818
id: go-cache

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ DOCKER_COMMAND ?= /app
1818

1919
# Tools
2020
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
2325

2426
# Misc
2527
OUTPUT_DIR ?= dist

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A GitHub template repository for Go
1313

1414
## Prerequisites
1515

16-
- [Go 1.21+](https://go.dev/doc/install)
16+
- [Go 1.23+](https://go.dev/doc/install)
1717
- [GNU Make](https://www.gnu.org/software/make/)
1818

1919
## Development instructions
@@ -55,6 +55,10 @@ make docker-run
5555
make ci-test-docker
5656
```
5757

58+
## Deployment instructions
59+
60+
### Docker Hub
61+
5862
To publish the docker image to Docker Hub, you need to set the following secrets in the repository settings.
5963

6064
```shell

0 commit comments

Comments
 (0)