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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.26.4-alpine AS builder
FROM --platform=$BUILDPLATFORM golang:1.26.5-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26.4-alpine
FROM golang:1.26.5-alpine

RUN apk add --no-cache git ca-certificates build-base && \
go install github.com/air-verse/air@latest
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.operator
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.26.4-alpine AS builder
FROM --platform=$BUILDPLATFORM golang:1.26.5-alpine AS builder
RUN apk add --no-cache git ca-certificates
WORKDIR /app
COPY go.mod go.sum ./
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ docker run --rm -p 8080:8080 -p 8081:8081 \
saivedant169/aegisflow:v0.8.0
```

Building from source still works (`make build`, Go 1.26.4+) if you prefer.
Building from source still works (`make build`, Go 1.26.5+) if you prefer.

---

Expand Down Expand Up @@ -214,7 +214,7 @@ Putting nginx or Caddy in front for TLS, SSE buffering, and admin-port isolation
### Option 2: Run locally

```bash
# Install Go 1.26.4+
# Install Go 1.26.5+
brew install go

# Clone and build
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Prerequisites

- Go 1.26.4+ (for building from source)
- Go 1.26.5+ (for building from source)
- Docker and Docker Compose (for containerized deployment)

## Quick Start
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/saivedant169/AegisFlow

go 1.26.4
go 1.26.5

require (
github.com/alicebob/miniredis/v2 v2.38.0
Expand Down
4 changes: 2 additions & 2 deletions starter-kit/install-pr-writer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ echo "==========================================="
hdr "1) Checking prerequisites"

if ! command -v go >/dev/null 2>&1; then
fail "Go not found (need 1.26.4+)"
fail "Go not found (need 1.26.5+)"
cleanup_fail
fi
GO_VER=$(go version | awk '{print $3}' | sed 's/go//')
Expand All @@ -47,7 +47,7 @@ GO_PATCH="${GO_PATCH:-0}"
if [ "$GO_MAJOR" -lt 1 ] || \
{ [ "$GO_MAJOR" -eq 1 ] && [ "$GO_MINOR" -lt 26 ]; } || \
{ [ "$GO_MAJOR" -eq 1 ] && [ "$GO_MINOR" -eq 26 ] && [ "$GO_PATCH" -lt 4 ]; }; then
fail "Go $GO_VER too old (need 1.26.4+)"
fail "Go $GO_VER too old (need 1.26.5+)"
cleanup_fail
fi
pass "Go $GO_VER"
Expand Down
2 changes: 1 addition & 1 deletion starter-kit/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fi

if [ "$HAS_DOCKER" = false ] && [ "$HAS_GO" = false ]; then
echo ""
echo -e "${RED}Error: Need either Docker or Go 1.26.4+ installed.${NC}"
echo -e "${RED}Error: Need either Docker or Go 1.26.5+ installed.${NC}"
echo " Install Docker: https://docs.docker.com/get-docker/"
echo " Install Go: https://go.dev/dl/"
exit 1
Expand Down