Skip to content

Commit e58f006

Browse files
committed
chore(BRIDGE-320): bumping go to 1.24.0; removing silenced vulns; updating CI components
1 parent 2e531f2 commit e58f006

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/actions/govulncheck.sh

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ main(){
88

99
jq -r '.finding | select( (.osv != null) and (.trace[0].function != null) ) | .osv ' < vulns.json > vulns_osv_ids.txt
1010

11-
ignore GO-2025-3373 "BRIDGE-315 stdlib crypto/x509"
12-
ignore GO-2025-3420 "BRIDGE-315 stdlib net/http"
13-
ignore GO-2025-3447 "BRIDGE-315 stdlib crypto/internal/nistec"
14-
1511
has_vulns
1612

1713
echo

.github/workflows/check.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
- name: Get sources
1010
uses: actions/checkout@v4
1111

12-
- name: Set up Go 1.23.3
12+
- name: Set up Go 1.24.0
1313
uses: actions/setup-go@v5
1414
with:
15-
go-version: '1.23.3'
15+
go-version: '1.24.0'
1616

1717
- name: Run golangci-lint
1818
uses: golangci/golangci-lint-action@v6
1919
with:
20-
version: v1.62.0
20+
version: v1.64.6
2121
args: --timeout=180s
2222
skip-cache: true
2323

@@ -30,6 +30,6 @@ jobs:
3030
- name: Run govulncheck
3131
uses: ./.github/actions/govulncheck
3232
with:
33-
go-version-input: 1.23.3
33+
go-version-input: 1.24
3434
go-package: ./...
3535

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ProtonMail/go-proton-api
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/Masterminds/semver/v3 v3.2.0

0 commit comments

Comments
 (0)