Skip to content

Commit 9fa1018

Browse files
committed
Remove armv7 images from CI and upgrade to Go 1.23
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 8c5118d commit 9fa1018

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Install Go
1919
uses: actions/setup-go@master
2020
with:
21-
go-version: 1.22.x
21+
go-version: 1.23.x
2222
- name: Set up QEMU
2323
uses: docker/setup-qemu-action@v3
2424
- name: Set up Docker Buildx
@@ -51,7 +51,7 @@ jobs:
5151
context: .
5252
file: ./Dockerfile
5353
outputs: "type=image,push=false"
54-
platforms: linux/amd64,linux/arm/v7,linux/arm64
54+
platforms: linux/amd64,linux/arm64
5555
build-args: |
5656
GIT_COMMIT=dev-${{env.GIT_COMMIT}}
5757
VERSION=dev-${{env.GIT_COMMIT}}

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Go
2222
uses: actions/setup-go@master
2323
with:
24-
go-version: 1.22.x
24+
go-version: 1.23.x
2525
- name: Set up QEMU
2626
uses: docker/setup-qemu-action@v3
2727
- name: Set up Docker Buildx
@@ -54,7 +54,7 @@ jobs:
5454
context: .
5555
file: ./Dockerfile
5656
outputs: "type=registry,push=true"
57-
platforms: linux/amd64,linux/arm/v7,linux/arm64
57+
platforms: linux/amd64,linux/arm64
5858
build-args: |
5959
GIT_COMMIT=${{env.GIT_COMMIT}}
6060
VERSION=${{env.VERSION}}

0 commit comments

Comments
 (0)