From 4e41eab093af93da429a365c9e39e70da0a3a943 Mon Sep 17 00:00:00 2001 From: James Blair Date: Thu, 9 Mar 2023 11:28:24 +1300 Subject: [PATCH] Updated go to 1.19.7 Go 1.17 is out of support, this brings bbolt in line with other etcd maintained projects and addresses CVEs with older versions of golang. Signed-off-by: James Blair --- .github/workflows/failpoint_test.yaml | 2 +- .github/workflows/tests.yaml | 4 ++-- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/failpoint_test.yaml b/.github/workflows/failpoint_test.yaml index 37f36819b..d8d556575 100644 --- a/.github/workflows/failpoint_test.yaml +++ b/.github/workflows/failpoint_test.yaml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: "1.17.13" + go-version: "1.19.7" - run: | make gofail-enable make test-failpoint diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 30eed1c74..4326d40f7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: "1.17.13" + go-version: "1.19.7" - run: make fmt - env: TARGET: ${{ matrix.target }} @@ -66,7 +66,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: - go-version: "1.17.13" + go-version: "1.19.7" - run: make fmt - env: TARGET: ${{ matrix.target }} diff --git a/go.mod b/go.mod index a69495e97..3602e0697 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module go.etcd.io/bbolt -go 1.17 +go 1.19 require ( github.com/stretchr/testify v1.8.2