Skip to content

Commit 9d4493b

Browse files
committed
Bump Go version to 1.21.9 to address HTTP CONTINUE vuln
1 parent 226cc58 commit 9d4493b

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/actions/tegola-setup-env/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ runs:
3232
uses: actions/setup-go@v5
3333
with:
3434
go-version-file: 'go.mod'
35+
check-latest: true
3536
if: ${{ inputs.go == 'true' }}
3637

3738
- name: Set tegola version

.github/workflows/on_pr_push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
uses: actions/setup-go@v5
3737
with:
3838
go-version-file: 'go.mod'
39+
check-latest: true
3940

4041
- name: Env Debug
4142
run: |
@@ -118,6 +119,7 @@ jobs:
118119
uses: actions/setup-go@v5
119120
with:
120121
go-version-file: 'go.mod'
122+
check-latest: true
121123

122124
- name: Install and run go vulncheck
123125
run: |

.github/workflows/on_release_publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
uses: actions/setup-go@v5
5858
with:
5959
go-version-file: 'go.mod'
60+
check-latest: true
6061

6162
- name: Build embedded UI
6263
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# $ docker run -v /path/to/docker-config:/opt/tegola_config -p 8080 tegola serve
2828

2929
# Intermediary container for building
30-
FROM golang:1.21.8-alpine3.18 AS build
30+
FROM golang:1.21.9-alpine3.18 AS build
3131

3232
ARG BUILDPKG="github.com/go-spatial/tegola/internal/build"
3333
ARG VER="Version Not Set"

0 commit comments

Comments
 (0)