Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/workflows/ci-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [1.25]
go: [1.26]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:latest as certs
RUN apk update && apk add ca-certificates

ARG BUILDPLATFORM=linux/amd64
FROM --platform=${BUILDPLATFORM} golang:1.25 as builder
FROM --platform=${BUILDPLATFORM} golang:1.26 as builder
ARG GIT_LATEST_COMMIT_ID
ARG TAGVER

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Trickster Helm Charts are located at <https://helm.tricksterproxy.io> for instal
### Building from source

To build Trickster from the source code yourself you need to have a working
Go environment with [version 1.25 or greater installed](http://golang.org/doc/install).
Go environment with [version 1.26 or greater installed](http://golang.org/doc/install).

You can directly use the `go` tool to download and install the `trickster`
binary into your `GOPATH`:
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/environment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Prerequisites

* Docker is installed and running, and the `docker` command is available.
* Golang 1.25 is installed
* Golang 1.26 is installed
* Make and other tools are installed

## Running
Expand Down
Loading