diff --git a/CHANGELOG.md b/CHANGELOG.md
index eb6dd372dc8bf415aaf46773d331f0287cdd7ea6..e0d0532ca35eeaea7a88df8429226a6455693c55 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.3.0](https://gitlab.com/to-be-continuous/gcloud/compare/2.2.0...2.3.0) (2022-12-15)
+
+
+### Features
+
+* improve environments url ([f16e4bf](https://gitlab.com/to-be-continuous/gcloud/commit/f16e4bf3564bf345a7582939578d5a14e331f6e9))
+
 # [2.2.0](https://gitlab.com/to-be-continuous/gcloud/compare/2.1.1...2.2.0) (2022-12-13)
 
 
diff --git a/README.md b/README.md
index 96c5bc40defeb0fd8ba964468f9b4c6c883a6441..a8ce4e7c1ae37f3b274becc3d3a546ebd0eea33e 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ In order to include this template in your project, add the following to your `gi
 ```yaml
 include:
   - project: 'to-be-continuous/gcloud'
-    ref: '2.2.0'
+    ref: '2.3.0'
     file: '/templates/gitlab-ci-gcloud.yml'
 ```
 
@@ -317,7 +317,7 @@ Let's imagine a backend service:
 include:
   # Include Google Cloud template
   - project: 'to-be-continuous/gcloud'
-    ref: '2.2.0'
+    ref: '2.3.0'
     file: '/templates/gitlab-ci-gcloud.yml'
   ...
 
@@ -453,11 +453,11 @@ With:
 include:
   # main template
   - project: 'to-be-continuous/gcloud'
-    ref: '2.2.0'
+    ref: '2.3.0'
     file: '/templates/gitlab-ci-gcloud.yml'
   # Vault variant
   - project: 'to-be-continuous/gcloud'
-    ref: '2.2.0'
+    ref: '2.3.0'
     file: '/templates/gitlab-ci-gcloud-vault.yml'
 
 variables:
diff --git a/templates/gitlab-ci-gcloud-vault.yml b/templates/gitlab-ci-gcloud-vault.yml
index fc606c2648b895576e030672891fd764be4c4419..a156b6d535a426eb316bf52567b3d868d3f46abf 100644
--- a/templates/gitlab-ci-gcloud-vault.yml
+++ b/templates/gitlab-ci-gcloud-vault.yml
@@ -11,6 +11,6 @@ variables:
 .gcp-base:
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "gcloud", "2.2.0" ]
+      command: ["--service", "gcloud", "2.3.0" ]
     - name: "$TBC_VAULT_IMAGE"
       alias: "vault-secrets-provider"
diff --git a/templates/gitlab-ci-gcloud.yml b/templates/gitlab-ci-gcloud.yml
index f8531162a7e661dfd8543bfa19ba5bcce77991ab..530a485555669f57ee311b5a449c0d89015381c4 100644
--- a/templates/gitlab-ci-gcloud.yml
+++ b/templates/gitlab-ci-gcloud.yml
@@ -378,7 +378,7 @@ stages:
   image: $GCP_CLI_IMAGE
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "gcloud", "2.2.0" ]
+      command: ["--service", "gcloud", "2.3.0" ]
   before_script:
     - *gcp-scripts
     - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"