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 actions/ci-beholder-schema-validate/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BUILD step
FROM golang:1.23-alpine AS builder
FROM golang:1.26-alpine AS builder

RUN apk add --no-progress --no-cache \
gcc \
Expand Down
2 changes: 1 addition & 1 deletion actions/nops-upgrade-checker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

COPY . .

Expand Down
4 changes: 2 additions & 2 deletions actions/setup-gap/authz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.24-alpine AS builder
FROM golang:1.26-alpine AS builder

WORKDIR /app
COPY main.go .
RUN go mod init github.com/auth-service && \
go build -o auth-service .

FROM alpine:3.21
FROM alpine:3.24

RUN apk --no-cache add ca-certificates
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions actions/wait-for-checks/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25-alpine AS builder
FROM golang:1.26-alpine AS builder

WORKDIR /app

Expand All @@ -8,7 +8,7 @@ RUN go mod download
COPY . .
RUN go build -o wait-for-checks ./action/

FROM alpine:3.23
FROM alpine:3.24
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY --from=builder /app/wait-for-checks /usr/local/bin/wait-for-checks
Expand Down
Loading