Skip to content

Commit 51b20c1

Browse files
committed
Update workflows to Go 1.23
Signed-off-by: Enrique Lacal <[email protected]>
1 parent 2f6560b commit 51b20c1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/docker_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
--label build_date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
2929
--label tag=${{ steps.build_tag_generator.outputs.BUILD_TAG }} \
3030
--build-arg BASE_IMAGE=alpine:3.19 \
31-
--build-arg BUILD_IMAGE=golang:1.22-alpine3.19 \
31+
--build-arg BUILD_IMAGE=golang:1.23-alpine3.19 \
3232
--tag ghcr.io/hyperledger/firefly-fabconnect:${{ steps.build_tag_generator.outputs.BUILD_TAG }} .
3333
3434
- name: Tag release

.github/workflows/docker_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
--label build_date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
2121
--label tag=${GITHUB_REF##*/} \
2222
--build-arg BASE_IMAGE=alpine:3.19 \
23-
--build-arg BUILD_IMAGE=golang:1.22-alpine3.19 \
23+
--build-arg BUILD_IMAGE=golang:1.23-alpine3.19 \
2424
--tag ghcr.io/hyperledger/firefly-fabconnect:${GITHUB_REF##*/} \
2525
--tag ghcr.io/hyperledger/firefly-fabconnect:head \
2626
.

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.22"
19+
go-version: "1.23"
2020
check-latest: true
2121

2222
- name: Build and Test
@@ -43,5 +43,5 @@ jobs:
4343
--label build_date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
4444
--label tag=${{ steps.build_tag_generator.outputs.BUILD_TAG }} \
4545
--build-arg BASE_IMAGE=alpine:3.19 \
46-
--build-arg BUILD_IMAGE=golang:1.22-alpine3.19 \
46+
--build-arg BUILD_IMAGE=golang:1.23-alpine3.19 \
4747
--tag ghcr.io/hyperledger/firefly-fabconnect:${{ steps.build_tag_generator.outputs.BUILD_TAG }} .

0 commit comments

Comments
 (0)