integration: build tailscale HEAD images with Go 1.27.1

Tailscale main now requires go >= 1.27.1, breaking the image build and
skipping the whole integration matrix.
This commit is contained in:
Kristoffer Dalby
2026-09-04 12:45:07 +00:00
parent 0af4081444
commit f3f6c98220
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# For testing purposes only
FROM golang:1.27.0-alpine AS build-env
FROM golang:1.27.1-alpine AS build-env
WORKDIR /go/src
+1 -1
View File
@@ -4,7 +4,7 @@
# This Dockerfile is more or less lifted from tailscale/tailscale
# to ensure a similar build process when testing the HEAD of tailscale.
FROM golang:1.27.0-alpine AS build-env
FROM golang:1.27.1-alpine AS build-env
WORKDIR /go/src