Skip to content

Commit fdc7c4f

Browse files
committed
chore: update dependencies.
1 parent 1b4c061 commit fdc7c4f

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/check-code.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- uses: "actions/setup-go@v5"
3434
with:
35-
go-version: "1.22"
35+
go-version: "1.23"
3636

3737
- name: "Write go.list file"
3838
run: "go list -buildvcs=false -deps -json ./... > go.list"
@@ -59,6 +59,7 @@ jobs:
5959
- "1.20"
6060
- "1.21"
6161
- "1.22"
62+
- "1.23"
6263
steps:
6364
- uses: "actions/checkout@v4"
6465

.github/workflows/scan-vulnerabilities.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: "actions/setup-go@v5"
2020
with:
21-
go-version: "1.22"
21+
go-version: "1.23"
2222

2323
- name: "Write go.list file"
2424
run: "go list -buildvcs=false -deps -json ./... > go.list"

.golangci.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# see: https://golangci-lint.run/usage/configuration/
22
run:
3-
go: "1.22"
3+
go: "1.23"
44

55
output:
66
sort-results: true
@@ -39,8 +39,7 @@ linters:
3939
- "depguard"
4040
- "varnamelen"
4141
# ---- deprecated ---- #
42-
- "execinquery"
43-
- "gomnd"
42+
- "exportloopref"
4443
# -------------------- #
4544
enable-all: true
4645
fast: false

.vscode/cspell.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"depguard",
2121
"dupl",
2222
"execinquery",
23+
"exportloopref",
2324
"funlen",
2425
"gocognit",
2526
"gocyclo",

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ nancy:
3131

3232
.PHONY: release
3333
release:
34-
if [ "$(tag)" = "" ]; then \
35-
echo "tag name is required."; \
34+
if [ "$(version)" = "" ]; then \
35+
echo "version is required."; \
3636
exit 1; \
3737
fi \
38-
&& gh release create $(tag) --generate-notes --target master
38+
&& gh release create $(version) --generate-notes --target master
3939

4040
.PHONY: spell-check
4141
spell-check:

0 commit comments

Comments
 (0)