Skip to content

Commit e1b4048

Browse files
committed
chore: bump go to 1.26.1
1 parent 4b2d93e commit e1b4048

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/go-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@19bb51245e9c80abacb2e91cc42b33fa478b8639
2121
with:
22-
go-version: '1.25.7'
22+
go-version: '1.26.1'
2323

2424
- name: Install golangci-lint
2525
run: |
26-
curl -sSfL https://github.com/golangci/golangci-lint/releases/download/v2.4.0/golangci-lint-2.4.0-linux-amd64.tar.gz | tar -xzv -C /tmp
26+
curl -sSfL https://github.com/golangci/golangci-lint/releases/download/v2.11.4/golangci-lint-2.11.4-linux-amd64.tar.gz | tar -xzv -C /tmp
2727
mv /tmp/golangci-lint-*/golangci-lint /usr/local/bin/
2828
2929
- name: Run golangci-lint

.github/workflows/gosec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@19bb51245e9c80abacb2e91cc42b33fa478b8639
2222
with:
23-
go-version: '1.25.7'
23+
go-version: '1.26.1'
2424

2525
- name: Install gosec
26-
run: go install github.com/securego/gosec/v2/cmd/gosec@v2.24.7
26+
run: go install github.com/securego/gosec/v2/cmd/gosec@v2.25.0
2727

2828
- name: Run gosec
2929
run: gosec ./...

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@19bb51245e9c80abacb2e91cc42b33fa478b8639
2424
with:
25-
go-version: '1.25.7'
25+
go-version: '1.26.1'
2626

2727
- name: Install dependencies
2828
run: go mod download

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/pixel365/pulse
22

3-
go 1.25.7
3+
go 1.26.1
44

55
require (
6-
github.com/go-playground/validator/v10 v10.30.1
6+
github.com/go-playground/validator/v10 v10.30.2
77
github.com/goccy/go-yaml v1.19.2
88
github.com/joho/godotenv v1.5.1
99
github.com/miekg/dns v1.1.72

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/o
1414
github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
1515
github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=
1616
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
17-
github.com/go-playground/validator/v10 v10.30.1 h1:f3zDSN/zOma+w6+1Wswgd9fLkdwy06ntQJp0BBvFG0w=
18-
github.com/go-playground/validator/v10 v10.30.1/go.mod h1:oSuBIQzuJxL//3MelwSLD5hc2Tu889bF0Idm9Dg26cM=
17+
github.com/go-playground/validator/v10 v10.30.2 h1:JiFIMtSSHb2/XBUbWM4i/MpeQm9ZK2xqPNk8vgvu5JQ=
18+
github.com/go-playground/validator/v10 v10.30.2/go.mod h1:mAf2pIOVXjTEBrwUMGKkCWKKPs9NheYGabeB04txQSc=
1919
github.com/goccy/go-yaml v1.19.2 h1:PmFC1S6h8ljIz6gMRBopkjP1TVT7xuwrButHID66PoM=
2020
github.com/goccy/go-yaml v1.19.2/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
2121
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=

0 commit comments

Comments
 (0)