Skip to content

Commit 41c3556

Browse files
Updated Go version - 1.23.6 (#195)
1 parent 31e83eb commit 41c3556

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

.github/workflows/buildOnPush.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Go Env
2424
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
2525
with:
26-
go-version: '1.23'
26+
go-version: '1.23.6'
2727

2828
- name: build tdx-cli
2929
run: |

.github/workflows/onmergerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup Go
3737
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
3838
with:
39-
go-version: '1.22.3'
39+
go-version: '1.23.6'
4040

4141
- name: Style Checker
4242
run: |

.github/workflows/onpullrequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Setup Go
6363
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
6464
with:
65-
go-version: "1.22.3"
65+
go-version: "1.23.6"
6666

6767
- name: Style Checker
6868
run: |

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Platforms with status **GA** are available and supported in the US and EU produc
2828

2929
You can use the clients to collect the reference values needed for attestation policies. For example, you can create a known-good state for your TEE, use the client CLI to collect evidence, and then use the collected evidence values to create an [attestation policy](https://docs.trustauthority.intel.com/main/articles/concept-policy-v2.html) for Intel Trust Authority.
3030

31-
Client libraries require **Go 1.22 or newer**. See https://go.dev/doc/install for installation of Go.
31+
Client libraries require **Go 1.23 or newer**. See https://go.dev/doc/install for installation of Go.
3232

3333
## Repo Structure
3434

@@ -59,4 +59,4 @@ file.
5959
---
6060
**\*** Other names and brands may be claimed as the property of others.
6161

62-
<!--- links --->
62+
<!--- links --->

go-connector/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ go get github.com/intel/trustauthority-client/go-connector
2525

2626
## Go Requirement
2727

28-
Use **Go 1.22 or newer**. See https://go.dev/doc/install for installation of Go.
28+
Use **Go 1.23 or newer**. See https://go.dev/doc/install for installation of Go.
2929

3030
## Unit Tests
3131

go-sgx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The **go-sgx** adapter enables a confidential computing client running in an Int
66

77
## Requirements
88

9-
- Use **Go 1.22 or newer**. See [https://go.dev/doc/install](https://go.dev/doc/install) for installation of Go.
9+
- Use **Go 1.23 or newer**. See [https://go.dev/doc/install](https://go.dev/doc/install) for installation of Go.
1010
- Intel® Software Guard Extensions Data Center Attestation Primitives (Intel® SGX DCAP) is required on the attesting TEE for quote generation. For Intel SGX DCAP installation, see [https://github.com/intel/SGXDataCenterAttestationPrimitives](https://github.com/intel/SGXDataCenterAttestationPrimitives).
1111

1212
## Usage

go-tdx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The **go-tdx** adapter can be used with any Intel TDX-enabled platform that supp
88

99
## Requirements
1010

11-
- Use **Go 1.22 or newer**. See [https://go.dev/doc/install](https://go.dev/doc/install) for installation of Go.
11+
- Use **Go 1.23 or newer**. See [https://go.dev/doc/install](https://go.dev/doc/install) for installation of Go.
1212
- An Intel TDX-enabled Linux platform with Kernel 6.7 or newer. The platform must have the `configfs` filesystem mounted at `/sys/kernel/config` and the Intel TDX kernel module loaded. This platform uses the `tdx_adapter.go` file.
1313
- Alternatively, a Microsoft Azure confidential VM with Intel TDX and vTPM. This platform requires `aztdx_adapter.go`.
1414

go-tpm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For detailed documentation of the TPM adapter, see the [TPM API Reference](https
1010

1111
## Prerequisites
1212

13-
- Go 1.22 or later
13+
- Go 1.23 or newer
1414

1515
## Usage
1616

@@ -35,4 +35,4 @@ file.
3535

3636
<br><br>
3737
---
38-
**\*** Other names and brands may be claimed as the property of others.
38+
**\*** Other names and brands may be claimed as the property of others.

tdx-cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ openssl pkeyutl -verify -pubin -inkey /tmp/public_key.pem -sigfile /usr/bin/trus
3232

3333
## Build the client CLI from source
3434

35-
- Use **Go 1.22 or newer**. Follow https://go.dev/doc/install for installation of Go.
35+
- Use **Go 1.23 or newer**. Follow https://go.dev/doc/install for installation of Go.
3636
- Ensure that you have the **build-essential** package and its dependencies installed. Follow the instructions below.
3737

3838

@@ -124,4 +124,4 @@ file.
124124

125125
<br><br>
126126
---
127-
**\*** Other names and brands may be claimed as the property of others.
127+
**\*** Other names and brands may be claimed as the property of others.

0 commit comments

Comments
 (0)