Skip to content

Commit ffd0c64

Browse files
authored
chore(ci): properly use Go 1.24 when building the Docker image (#416)
1 parent daaefd6 commit ffd0c64

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/test_and_publish_docker_image.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ jobs:
2828

2929
if: ${{ github.event_name != 'pull_request' }}
3030
steps:
31-
- uses: actions/setup-go@v5
32-
with:
33-
go-version: '1.24'
34-
3531
- name: Login to DockerHub
3632
uses: docker/login-action@v3
3733
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.21 as build
1+
FROM golang:1.24 as build
22

33
WORKDIR /src
44
COPY . .

0 commit comments

Comments
 (0)