Skip to content

Commit 9095aaa

Browse files
committed
update Dockerfile and CI to go 1.24
1 parent d1f0eed commit 9095aaa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: actions/setup-go@v3
1717
with:
18-
go-version: "^1.22.7"
18+
go-version: "^1.24.0"
1919
- run: go test ./pmtiles
2020
fmt_vet_lint:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v3
2424
- uses: actions/setup-go@v3
2525
with:
26-
go-version: "^1.22.7"
26+
go-version: "^1.24.0"
2727
- run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
2828
- run: go vet caddy/pmtiles_proxy.go
2929
- run: go vet main.go

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23-alpine3.19 AS builder
1+
FROM golang:1.24-alpine AS builder
22
COPY . /workspace
33
WORKDIR /workspace
44
ENV CGO_ENABLED=0

0 commit comments

Comments
 (0)