Skip to content

Commit 372eef5

Browse files
authored
bump: go version updated to v1.23 (#79)
1 parent dad3373 commit 372eef5

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

.github/workflows/main.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- "1.20"
2121
- "1.21"
2222
- "1.22"
23+
- "1.23"
2324
steps:
2425

2526
- uses: actions/checkout@v4
@@ -41,11 +42,11 @@ jobs:
4142
- run: make tests
4243

4344
- name: Install goveralls
44-
if: matrix.go == '1.22'
45+
if: matrix.go == '1.23'
4546
run: go install github.com/mattn/goveralls@latest
4647

4748
- name: Coverage - Sending Report to Coveral
48-
if: matrix.go == '1.22'
49+
if: matrix.go == '1.23'
4950
env:
5051
COVERALLS_TOKEN: ${{ secrets.github_token }}
5152
run: goveralls -coverprofile=coverage.cov -service=github
@@ -58,7 +59,5 @@ jobs:
5859
uses: golangci/[email protected]
5960
with:
6061
version: latest
61-
skip-build-cache: true
62-
skip-pkg-cache: true
63-
args: --skip-dirs "^(cmd|testdata)"
64-
62+
skip-cache: true
63+
args: --exclude-dirs "^(cmd|testdata)"

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- v*
77

88
env:
9-
GO_VERSION: "1.22"
9+
GO_VERSION: "1.23"
1010

1111
jobs:
1212

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tests-summary: bin/tparse
5252
lints: ## Run golangci-lint
5353
lints: bin/golangci-lint
5454
lints:
55-
golangci-lint run --no-config ./... --skip-dirs "^(cmd|testdata)"
55+
golangci-lint run --no-config ./... --exclude-dirs "^(cmd|testdata)"
5656

5757

5858
cover: ## Run Coverage
@@ -71,8 +71,8 @@ bin/tparse: INSTALL_URL=github.com/mfridman/[email protected]
7171
bin/tparse:
7272
$(call install_go_bin, tparse, $(INSTALL_URL))
7373

74-
bin/golangci-lint: ## Installs golangci-lint@v1.55.2 (if not exists)
75-
bin/golangci-lint: INSTALL_URL=github.com/golangci/golangci-lint@v1.55.2
74+
bin/golangci-lint: ## Installs golangci-lint@v1.62.0 (if not exists)
75+
bin/golangci-lint: INSTALL_URL=github.com/golangci/golangci-lint@v1.62.0
7676
bin/golangci-lint:
7777
$(call install_go_bin, golangci-lint, $(INSTALL_URL))
7878

0 commit comments

Comments
 (0)