From a2f4846783d534761ca75905458b080a54bb5656 Mon Sep 17 00:00:00 2001 From: Radoslav Dimitrov Date: Thu, 30 Oct 2025 13:44:37 +0200 Subject: [PATCH 1/2] Bump Go to 1.24.9 Signed-off-by: Radoslav Dimitrov --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 9d1fb2c8..a8c4d063 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/theupdateframework/go-tuf/v2 -go 1.23.0 +go 1.24.9 require ( github.com/cenkalti/backoff/v5 v5.0.3 From f7d929f886fe7f8e529b0c929c372a31f14792cd Mon Sep 17 00:00:00 2001 From: Radoslav Dimitrov Date: Thu, 30 Oct 2025 14:47:28 +0200 Subject: [PATCH 2/2] Temporarily disable rsa1024min check in Go Signed-off-by: Radoslav Dimitrov --- .github/workflows/tests.yml | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 23fb9365..08aaa7f5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,6 +40,8 @@ jobs: - name: Run tests run: go test -race -covermode=atomic -coverpkg=./metadata/... -coverprofile=coverage.out ./... + env: + GODEBUG: rsa1024min=0 - name: Send coverage uses: codecov/codecov-action@54bcd8715eee62d40e33596ef5e8f0f48dbbccab # v4.1.0 diff --git a/Makefile b/Makefile index 0b2acad7..a5ff219f 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ build-%: # Test target .PHONY: test test: - go test -race -covermode atomic ./... + GODEBUG=rsa1024min=0 go test -race -covermode atomic ./... ##################### # lint section