Skip to content

Commit 5b51f1b

Browse files
committed
Update Go version to 1.24
- Update go.mod from 1.21 to 1.24 - Update Dockerfile from golang:1.20 to golang:1.24 - Update CI workflow from 1.18 to 1.24 - All tests passing with new Go version
1 parent d39b2c5 commit 5b51f1b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.18
23+
go-version: 1.24
2424
- uses: actions/checkout@v4
2525
- run: make build
2626
- uses: actions/upload-artifact@v4
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/setup-go@v5
3838
with:
39-
go-version: 1.18
39+
go-version: 1.24
4040
- uses: actions/checkout@v4
4141
- env:
4242
VIMEO_TEST_API_KEY: ${{ secrets.VIMEO_ACCESS_TOKEN }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.20 AS builder
1+
FROM golang:1.24 AS builder
22

33
ENV TAG="nightly"
44
ENV COMMIT=""

go.mod

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

3-
go 1.21
3+
go 1.24
44

55
require (
66
github.com/BrianHicks/finch v0.0.0-20140409222414-419bd73c29ec

0 commit comments

Comments
 (0)