Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/docker-verify-fingerprints.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ USE_LATEST_PHP="${USE_LATEST_PHP:-0}"

if [[ -z "${GO_VERSION}" ]]; then
GO_VERSION="$(awk -F'"' '/variable "GO_VERSION"/ {f=1} f && /default/ {print $2; exit}' docker-bake.hcl)"
GO_VERSION="${GO_VERSION:-1.26}"
GO_VERSION="${GO_VERSION:-1.27}"
fi

if [[ -z "${PHP_VERSION}" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion caddy/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/dunglas/frankenphp/caddy

go 1.26.0
go 1.27.0

replace github.com/dunglas/frankenphp => ../

Expand Down
2 changes: 1 addition & 1 deletion dev-alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
#checkov:skip=CKV_DOCKER_2
#checkov:skip=CKV_DOCKER_3
FROM golang:1.26-alpine
FROM golang:1.27-alpine

ENV GOTOOLCHAIN=local
ENV CFLAGS="-ggdb3"
Expand Down
2 changes: 1 addition & 1 deletion dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
#checkov:skip=CKV_DOCKER_2
#checkov:skip=CKV_DOCKER_3
FROM golang:1.26
FROM golang:1.27

ENV GOTOOLCHAIN=local
ENV CFLAGS="-ggdb3"
Expand Down
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ variable "PHP_VERSION" {
}

variable "GO_VERSION" {
default = "1.26"
default = "1.27"
}

variable "BASE_FINGERPRINT" {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/dunglas/frankenphp

go 1.26.0
go 1.27.0

retract v1.0.0-rc.1 // Human error

Expand Down
2 changes: 1 addition & 1 deletion internal/extgen/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (s *IntegrationTestSuite) createGoModule(sourceFile string) (string, error)

goModContent := fmt.Sprintf(`module %s

go 1.26
go 1.27

require github.com/dunglas/frankenphp v0.0.0

Expand Down
Loading