Skip to content

Commit 3cb4f26

Browse files
authored
Bump to Go 1.24 (#380)
* Bump to Go 1.24 * Bump to Go 1.24
1 parent 1384d6e commit 3cb4f26

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/codecov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.23'
22+
go-version: '1.24'
2323

2424
- name: Setup necessary packages
2525
run: |

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Go
4141
uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.23'
43+
go-version: '1.24'
4444

4545
- name: Initialize CodeQL
4646
uses: github/codeql-action/init@v2

Dockerfile

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

33
ARG IMG_PATH=/opt/pics
44
ARG EXHAUST_PATH=/opt/exhaust

Dockerfile.CI

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

33
ARG IMG_PATH=/opt/pics
44
ARG EXHAUST_PATH=/opt/exhaust

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ var (
5454
PrefetchForeground bool // Standalone prefetch, prefetch and exit
5555
AllowNonImage bool
5656
Config = NewWebPConfig()
57-
Version = "0.13.1"
57+
Version = "0.13.2"
5858
WriteLock = cache.New(5*time.Minute, 10*time.Minute)
5959
ConvertLock = cache.New(5*time.Minute, 10*time.Minute)
6060
LocalHostAlias = "local"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module webp_server_go
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/buckket/go-blurhash v1.1.0

0 commit comments

Comments
 (0)