diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 43fc472915a8640e7ca8fae8e74ac3b813c0368e..e742d112218affab7c0ec7fa544ee93de8cd23fb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -22,7 +22,7 @@ stages:
 check-if-api-docs-updated:
   stage: build
   needs: []
-  image: golang:1.24.1
+  image: golang:1.24.2
   before_script:
   - go install github.com/swaggo/swag/cmd/swag@latest
   script:
@@ -37,7 +37,7 @@ build-application-binary:
   stage: build
   needs: []
   parallel: !reference [ .parallel, parallel ]
-  image: golang:1.24.1
+  image: golang:1.24.2
   script:
   - CGO_ENABLED=0 go build -ldflags="-s -w" -o firehouse-smokedetection-${GOOS}-${GOARCH} ./
   - "if [ \"${GOOS}\" = \"windows\" ]; then
diff --git a/Dockerfile b/Dockerfile
index 35c0be33edcfc8068ce79e886561b40c4316c3a3..c9b56f4fb6aa7316eaf0efde6a791d2e36a5475d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 FROM jonasled.dev/firehouse-smokedetection/plugins/gotify:latest@sha256:dba0085b06836938eaec49b321b5c15023b68d8ce742548a1130a60735b3157e  AS plugin-gotify
-FROM golang:1.24.1-alpine AS build
+FROM golang:1.24.2-alpine AS build
 RUN apk add --no-cache --update binutils binutils-dev binutils-gold g++ gcc
 WORKDIR /app
 COPY go.mod go.sum ./