diff --git a/CHANGELOG.md b/CHANGELOG.md
index d60901e22422bdf426835de60cbef5f8d4de8023..62b62d019cd131396d509fd86653a6de1e90e157 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [4.12.1](https://gitlab.com/to-be-continuous/golang/compare/4.12.0...4.12.1) (2025-01-31)
+
+
+### Bug Fixes
+
+* **sbom:** only generate SBOMs on prod branches, integ branches and release tags ([261e8ce](https://gitlab.com/to-be-continuous/golang/commit/261e8ceb2d360768de0cc8fe3326cc9dfea4c121))
+
 # [4.12.0](https://gitlab.com/to-be-continuous/golang/compare/4.11.1...4.12.0) (2025-01-27)
 
 
diff --git a/README.md b/README.md
index 09d669261e6667ec712b4710f92f5715da5e1817..62a0dd8c0230b5e7f97dff4eccc76a2991b567e0 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`:
 ```yaml
 include:
   # 1: include the component
-  - component: $CI_SERVER_FQDN/to-be-continuous/golang/gitlab-ci-golang@4.12.0
+  - component: $CI_SERVER_FQDN/to-be-continuous/golang/gitlab-ci-golang@4.12.1
     # 2: set/override component inputs
     inputs:
       image: "registry.hub.docker.com/library/golang:buster" # ⚠ this is only an example
@@ -28,7 +28,7 @@ Add the following to your `.gitlab-ci.yml`:
 include:
   # 1: include the template
   - project: 'to-be-continuous/golang'
-    ref: '4.12.0'
+    ref: '4.12.1'
     file: '/templates/gitlab-ci-golang.yml'
 
 variables:
diff --git a/templates/gitlab-ci-golang.yml b/templates/gitlab-ci-golang.yml
index 335998cf78ffe871f1b61885017c8656eb893a47..9edc5fb49c3522258a476e5a14d922b8c0a076e1 100644
--- a/templates/gitlab-ci-golang.yml
+++ b/templates/gitlab-ci-golang.yml
@@ -605,7 +605,7 @@ stages:
   image: $GO_IMAGE
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "golang", "4.12.0"]
+      command: ["--service", "golang", "4.12.1"]
   variables:
     # The directory where 'go install' will install a command.
     GOBIN: "$CI_PROJECT_DIR/$GO_PROJECT_DIR/bin"