Skip to content

Commit 3ace7ea

Browse files
authored
Bump Go to 1.24.9 (#698)
* Bump Go to 1.24.9 Signed-off-by: Radoslav Dimitrov <[email protected]> * Temporarily disable rsa1024min check in Go Signed-off-by: Radoslav Dimitrov <[email protected]> --------- Signed-off-by: Radoslav Dimitrov <[email protected]>
1 parent 0d67f52 commit 3ace7ea

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040

4141
- name: Run tests
4242
run: go test -race -covermode=atomic -coverpkg=./metadata/... -coverprofile=coverage.out ./...
43+
env:
44+
GODEBUG: rsa1024min=0
4345

4446
- name: Send coverage
4547
uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ build-%:
4646
# Test target
4747
.PHONY: test
4848
test:
49-
go test -race -covermode atomic ./...
49+
GODEBUG=rsa1024min=0 go test -race -covermode atomic ./...
5050

5151
#####################
5252
# lint section

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/theupdateframework/go-tuf/v2
22

3-
go 1.23.0
3+
go 1.24.9
44

55
require (
66
github.com/cenkalti/backoff/v5 v5.0.3

0 commit comments

Comments
 (0)