Skip to content

Commit ef636c8

Browse files
update to go 1.23.6 to fix #53
And gose might need to be updated too. See ThalesGroup/gose#22 And crypto11 needs to be updated to ThalesGroup/crypto11#116 Signed-off-by: Nicolas-Peiffer <102670102+Nicolas-Peiffer@users.noreply.github.com>
1 parent 1f4ca28 commit ef636c8

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/Goreleaser.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
id : publish-artifacts
3030
uses: ./.github/actions/publish-release
3131
with:
32-
go-version: 1.23.0
32+
go-version: 1.23.6
3333
github_token : ${{ secrets.GITHUB_TOKEN }}
3434
registry: ghcr.io
3535
registry_username: ${{ github.actor }}
@@ -79,6 +79,6 @@ jobs:
7979
id : slsa-verifier
8080
uses: ./.github/actions/verify-attestations
8181
with:
82-
go-version: 1.23.0
82+
go-version: 1.23.6
8383
github_token : ${{ secrets.GITHUB_TOKEN }}
8484
image: ${{needs.goreleaser.outputs.image}}@${{needs.goreleaser.outputs.digest}}

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.23.0
1+
1.23.6

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export GITHUB_REPOSITORY_OWNER=localfakegithubowner
3030
```
3131

3232
```bash
33-
podman run -it --rm -v $PWD:/pwd --workdir /pwd -e LDFLAGS=$LDFLAGS -e WORKSPACE=$WORKSPACE -e GITHUB_REPOSITORY_OWNER=$GITHUB_REPOSITORY_OWNER --platform "linux/amd64" ghcr.io/thalesgroup/goreleaser-glibc-image:golang-1.23.0-bookworm release --clean --snapshot --skip sign,publish,validate,ko,sbom
33+
podman run -it --rm -v $PWD:/pwd --workdir /pwd -e LDFLAGS=$LDFLAGS -e WORKSPACE=$WORKSPACE -e GITHUB_REPOSITORY_OWNER=$GITHUB_REPOSITORY_OWNER --platform "linux/amd64" ghcr.io/thalesgroup/goreleaser-glibc-image:golang-1.23.6-bookworm release --clean --snapshot --skip sign,publish,validate,ko,sbom
3434
```
3535

3636
### shell `fish`
@@ -42,7 +42,7 @@ set GITHUB_REPOSITORY_OWNER localfakegithubowner
4242
```
4343

4444
```bash
45-
podman run -it --rm -v $PWD:/pwd --workdir /pwd -e LDFLAGS=$LDFLAGS -e WORKSPACE=$WORKSPACE -e GITHUB_REPOSITORY_OWNER=$GITHUB_REPOSITORY_OWNER --platform "linux/amd64" ghcr.io/thalesgroup/goreleaser-glibc-image:golang-1.23.0-bookworm release --clean --snapshot --skip sign,publish,validate,ko,sbom
45+
podman run -it --rm -v $PWD:/pwd --workdir /pwd -e LDFLAGS=$LDFLAGS -e WORKSPACE=$WORKSPACE -e GITHUB_REPOSITORY_OWNER=$GITHUB_REPOSITORY_OWNER --platform "linux/amd64" ghcr.io/thalesgroup/goreleaser-glibc-image:golang-1.23.6-bookworm release --clean --snapshot --skip sign,publish,validate,ko,sbom
4646
```
4747

4848
## KMS provider for SoftHsm V2

deployments/container/ContainerfileSofthsm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# Set Go & tools versions. Be carreful when upgrading these versions, make sure
2222
# to keep them in sync with the version golang
23-
ARG GOLANG_VERSION=1.23.0
23+
ARG GOLANG_VERSION=1.23.6
2424

2525
# Set Debian version name (e.g. bookworm)
2626
ARG DEBIAN_VERSION=bookworm

deployments/container/ContainerfileSwtpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
# Set Go & tools versions. Be carreful when upgrading these versions, make sure
2222
# to keep them in sync with the version golang
23-
ARG GOLANG_VERSION=1.23.0
23+
ARG GOLANG_VERSION=1.23.6
2424

2525
# Set Debian version name (e.g. bookworm)
2626
ARG DEBIAN_VERSION=bookworm

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ThalesGroup/k8s-kms-plugin
22

3-
go 1.23.0
3+
go 1.23.6
44

55
require (
66
github.com/golang/protobuf v1.5.4

go.sum

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMn
4949
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
5050
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
5151
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
52-
github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
52+
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
5353
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5454
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
5555
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -184,8 +184,8 @@ github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
184184
github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
185185
github.com/lib/pq v1.3.1-0.20200116171513-9eb3fc897d6f/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
186186
github.com/magefile/mage v1.10.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A=
187-
github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY=
188-
github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0=
187+
github.com/magiconair/properties v1.8.9 h1:nWcCbLq1N2v/cpNsy5WvQ37Fb+YElfq20WJ/a8RkpQM=
188+
github.com/magiconair/properties v1.8.9/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0=
189189
github.com/mattn/go-sqlite3 v1.14.0/go.mod h1:JIl7NbARA7phWnGvh0LKTyg7S9BA+6gx71ShQilpsus=
190190
github.com/miekg/pkcs11 v1.1.1 h1:Ugu9pdy6vAYku5DEpVWVFPYnzV+bxB+iRdbuFSu7TvU=
191191
github.com/miekg/pkcs11 v1.1.1/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs=

0 commit comments

Comments
 (0)