Skip to content
Merged

Fix CI? #1021

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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: "1.25.4"
go-version: "1.25.5"
cache: true

- name: Lint
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: "1.25.4"
go-version: "1.25.5"
cache: true

- name: Install Task
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: "1.25.4"
go-version: "1.25.5"
cache: true

- name: Install go-licences
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: "1.25.4"
go-version: "1.25.5"
cache: true

- name: Install Task
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ task build # Should create ./bin/cagent
- Manual workflow dispatch

**Build Configuration:**
- Go version: 1.25.4
- Go version: 1.25.5
- Platforms: linux/amd64, linux/arm64, darwin/amd64, darwin/arm64, windows/amd64, windows/arm64
- Binary name: `cagent` (or `cagent.exe` on Windows)
- Version injection: Uses git tag and commit SHA via ldflags
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

ARG GO_VERSION="1.25.4"
ARG GO_VERSION="1.25.5"
ARG ALPINE_VERSION="3.22"

# xx is a helper for cross-compilation
Expand Down Expand Up @@ -72,7 +72,7 @@ COPY --from=builder /binaries/cagent-$TARGETOS-$TARGETARCH* cagent
FROM scratch AS cross
COPY --from=builder /binaries .

FROM alpine
FROM alpine:${ALPINE_VERSION}
RUN apk add --no-cache ca-certificates docker-cli
RUN addgroup -S cagent && adduser -S -G cagent cagent
ARG TARGETOS TARGETARCH
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/docker/cagent

go 1.25.4
go 1.25.5

require (
charm.land/bubbles/v2 v2.0.0-rc.1
Expand Down