mod: bump dependencies; bump go version to 1.24.x
All checks were successful
Go Project Action / Spell-check and test go project (push) Successful in 2m12s
Release Go Application / Release go project (release) Successful in 56s

This commit is contained in:
2025-10-30 19:55:16 +01:00
parent 0a8866f9d7
commit 58f8ce5bff
4 changed files with 82 additions and 83 deletions

View File

@@ -17,9 +17,9 @@ jobs:
- name: Setup Go installation
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.24.x
- name: Install dependencies
run: go get .
run: go get -u .
- name: Build
run: CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -w" -o ./bin/serve main.go
- name: Release build artifacts

View File

@@ -16,12 +16,12 @@ jobs:
- name: Setup Go installation
uses: actions/setup-go@v5
with:
go-version: 1.23.x
go-version: 1.24.x
- name: Spell checking
uses: crate-ci/typos@v1.25.0
with:
config: ./.typos-config
- name: Install dependencies
run: go get .
run: go get -u .
- name: Run tests
run: go test ./...