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.25-alpine AS builder

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

COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
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.25-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.22

RUN apk --no-cache add ca-certificates
WORKDIR /app
Expand Down
Loading