diff --git a/.github/workflows/codecov.yaml b/.github/workflows/codecov.yaml index b30c1a4e..5b35343a 100644 --- a/.github/workflows/codecov.yaml +++ b/.github/workflows/codecov.yaml @@ -19,7 +19,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' - name: Setup necessary packages run: | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 2062add3..07115926 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -40,7 +40,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version: '1.23' + go-version: '1.24' - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/Dockerfile b/Dockerfile index b0993996..1b5748de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23-bookworm AS builder +FROM golang:1.24-bookworm AS builder ARG IMG_PATH=/opt/pics ARG EXHAUST_PATH=/opt/exhaust diff --git a/config/config.go b/config/config.go index ae1235b0..69735649 100644 --- a/config/config.go +++ b/config/config.go @@ -54,7 +54,7 @@ var ( PrefetchForeground bool // Standalone prefetch, prefetch and exit AllowNonImage bool Config = NewWebPConfig() - Version = "0.13.1" + Version = "0.13.2" WriteLock = cache.New(5*time.Minute, 10*time.Minute) ConvertLock = cache.New(5*time.Minute, 10*time.Minute) LocalHostAlias = "local" diff --git a/go.mod b/go.mod index bcd37f44..0ee2e8c1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module webp_server_go -go 1.23 +go 1.24 require ( github.com/buckket/go-blurhash v1.1.0