diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6219cbcc54e8cc60992b1004e800a98776d3741..64a1fc639ba297d7220d959400d5db6aa26f3088 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [2.1.1](https://gitlab.com/to-be-continuous/golang/compare/2.1.0...2.1.1) (2022-01-06)
+
+
+### Bug Fixes
+
+* use go install instead of deprecated go get ([91a5c14](https://gitlab.com/to-be-continuous/golang/commit/91a5c14c8ba6bb5bff0e484a4507297b2292b8e8))
+
 # [2.1.0](https://gitlab.com/to-be-continuous/golang/compare/2.0.3...2.1.0) (2021-11-29)
 
 
diff --git a/README.md b/README.md
index a9b3f4275b0c5e88cdfbea76dadc29fe5121b93f..8f84b3ada8b35991f76fd04923a3db428dff1a04 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ In order to include this template in your project, add the following to your `gi
 ```yaml
 include:
   - project: 'to-be-continuous/golang'
-    ref: '2.1.0'
+    ref: '2.1.1'
     file: '/templates/gitlab-ci-golang.yml'
 ```
 
diff --git a/templates/gitlab-ci-golang.yml b/templates/gitlab-ci-golang.yml
index 1e75a0447ecc3279cb89f4c86bbcc8a777fd7985..62b23624802f0e33966014f75aa829b128449a75 100644
--- a/templates/gitlab-ci-golang.yml
+++ b/templates/gitlab-ci-golang.yml
@@ -271,7 +271,7 @@ stages:
     fi
   }
 
-  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update golang "2.1.0"; fi
+  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update golang "2.1.1"; fi
   unscope_variables
 
   # ENDSCRIPT
@@ -282,7 +282,7 @@ stages:
   image: $GO_IMAGE
   services:
     - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
-      command: ["--service", "golang", "2.1.0" ]
+      command: ["--service", "golang", "2.1.1" ]
   variables:
     # The directory where 'go install' will install a command.
     GOBIN: "$CI_PROJECT_DIR/$GO_PROJECT_DIR/bin"