mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-10-18 13:24:44 -04:00
treewide: upgrade to Go 1.23.2 (#3417)
* treewide: upgrade to Go 1.23.2 * deps: update golangci/golangci-lint to v1.61.0 * deps: tidy all modules --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
This commit is contained in:
parent
9ef5b70966
commit
843d9bcb7c
11 changed files with 19 additions and 19 deletions
2
.github/workflows/build-ccm-gcp.yml
vendored
2
.github/workflows/build-ccm-gcp.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
||||||
- name: Setup Go environment
|
- name: Setup Go environment
|
||||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
||||||
with:
|
with:
|
||||||
go-version: "1.22.7"
|
go-version: "1.23.2"
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Install Crane
|
- name: Install Crane
|
||||||
|
|
|
@ -67,7 +67,7 @@ jobs:
|
||||||
- name: Setup Go environment
|
- name: Setup Go environment
|
||||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
||||||
with:
|
with:
|
||||||
go-version: "1.22.7"
|
go-version: "1.23.2"
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Determine version
|
- name: Determine version
|
||||||
|
|
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
|
@ -40,7 +40,7 @@ jobs:
|
||||||
if: matrix.language == 'go'
|
if: matrix.language == 'go'
|
||||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
||||||
with:
|
with:
|
||||||
go-version: "1.22.7"
|
go-version: "1.23.2"
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -233,7 +233,7 @@ jobs:
|
||||||
- name: Setup Go environment
|
- name: Setup Go environment
|
||||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
||||||
with:
|
with:
|
||||||
go-version: "1.22.7"
|
go-version: "1.23.2"
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
- name: Build generateMeasurements tool
|
- name: Build generateMeasurements tool
|
||||||
|
|
2
.github/workflows/test-operator-codegen.yml
vendored
2
.github/workflows/test-operator-codegen.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
||||||
- name: Setup Go environment
|
- name: Setup Go environment
|
||||||
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
||||||
with:
|
with:
|
||||||
go-version: "1.22.7"
|
go-version: "1.23.2"
|
||||||
cache: true
|
cache: true
|
||||||
|
|
||||||
- name: Run code generation
|
- name: Run code generation
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
--- src/crypto/tls/common.go
|
--- src/crypto/tls/common.go
|
||||||
+++ src/crypto/tls/common.go
|
+++ src/crypto/tls/common.go
|
||||||
@@ -62,7 +62,7 @@
|
@@ -64,7 +64,7 @@ const (
|
||||||
maxCiphertext = 16384 + 2048 // maximum ciphertext payload length
|
maxCiphertext = 16384 + 2048 // maximum ciphertext payload length
|
||||||
maxCiphertextTLS13 = 16384 + 256 // maximum ciphertext length in TLS 1.3
|
maxCiphertextTLS13 = 16384 + 256 // maximum ciphertext length in TLS 1.3
|
||||||
recordHeaderLen = 5 // record header length
|
recordHeaderLen = 5 // record header length
|
||||||
- maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
|
- maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
|
||||||
+ maxHandshake = 262144 // maximum handshake we support (protocol max is 16 MB)
|
+ maxHandshake = 262144 // maximum handshake we support (protocol max is 16 MB)
|
||||||
maxUselessRecords = 16 // maximum number of consecutive non-advancing records
|
maxHandshakeCertificateMsg = 262144 // maximum certificate message size (256 KiB)
|
||||||
|
maxUselessRecords = 16 // maximum number of consecutive non-advancing records
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
|
||||||
go_sdk.download(
|
go_sdk.download(
|
||||||
name = "go_sdk",
|
name = "go_sdk",
|
||||||
patches = ["//3rdparty/bazel/org_golang:go_tls_max_handshake_size.patch"],
|
patches = ["//3rdparty/bazel/org_golang:go_tls_max_handshake_size.patch"],
|
||||||
version = "1.22.7",
|
version = "1.23.2",
|
||||||
)
|
)
|
||||||
|
|
||||||
# the use_repo rule needs to list all top-level go dependencies
|
# the use_repo rule needs to list all top-level go dependencies
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
||||||
module github.com/edgelesssys/constellation/v2
|
module github.com/edgelesssys/constellation/v2
|
||||||
|
|
||||||
go 1.22.7
|
go 1.23.2
|
||||||
|
|
||||||
// TODO(daniel-weisse): revert after merging https://github.com/martinjungblut/go-cryptsetup/pull/16.
|
// TODO(daniel-weisse): revert after merging https://github.com/martinjungblut/go-cryptsetup/pull/16.
|
||||||
replace github.com/martinjungblut/go-cryptsetup => github.com/daniel-weisse/go-cryptsetup v0.0.0-20230705150314-d8c07bd1723c
|
replace github.com/martinjungblut/go-cryptsetup => github.com/daniel-weisse/go-cryptsetup v0.0.0-20230705150314-d8c07bd1723c
|
||||||
|
|
4
go.work
4
go.work
|
@ -1,6 +1,6 @@
|
||||||
go 1.22.7
|
go 1.23.2
|
||||||
|
|
||||||
toolchain go1.22.7
|
toolchain go1.23.2
|
||||||
|
|
||||||
use (
|
use (
|
||||||
.
|
.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/edgelesssys/constellation/v2/hack/tools
|
module github.com/edgelesssys/constellation/v2/hack/tools
|
||||||
|
|
||||||
go 1.22
|
go 1.23.2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/google/go-licenses v1.6.0
|
github.com/google/go-licenses v1.6.0
|
||||||
|
|
|
@ -103,7 +103,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchDatasources": ["golang-version"],
|
"matchDatasources": ["golang-version"],
|
||||||
"allowedVersions": "1.22",
|
"allowedVersions": "1.23",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"matchManagers": ["pip_requirements"],
|
"matchManagers": ["pip_requirements"],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue