Skip to content
Merged
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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ jobs:
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
GOEXPERIMENT: greenteagc
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.25.2
go-version: 1.26
- name: Check out source code
uses: actions/checkout@v4
- run: echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@ RUN make build_ui
######################################
# Prepare go_builder
######################################
FROM golang:1.25.2-alpine as go_builder
FROM golang:1.26-alpine as go_builder
WORKDIR /go/src/github.com/openflagr/flagr

RUN apk add --no-cache git make build-base
ADD . .
ENV CGO_ENABLED=0
ENV GOEXPERIMENT=greenteagc
RUN make build

FROM alpine
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/openflagr/flagr

go 1.25.2
go 1.26

require (
cloud.google.com/go v0.123.0 // indirect
Expand Down
3 changes: 1 addition & 2 deletions integration_tests/Dockerfile-Integration-Test
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
FROM golang:1.25.2-alpine as go_builder
FROM golang:1.26-alpine as go_builder
WORKDIR /go/src/github.com/openflagr/flagr
RUN apk add --no-cache git make build-base
ADD . .
ENV CGO_ENABLED=0
ENV GOEXPERIMENT=greenteagc
RUN make build

FROM alpine
Expand Down
Loading