From 05ee934b67ae3dd1b00105ab418b790d57e444ad Mon Sep 17 00:00:00 2001
From: semantic-release-bot <semantic-release-bot@martynus.net>
Date: Mon, 4 Dec 2023 09:42:25 +0000
Subject: [PATCH] chore(release): 5.6.0 [skip ci]

# [5.6.0](https://gitlab.com/to-be-continuous/docker/compare/5.5.6...5.6.0) (2023-12-4)

### Features

* build cache can be disabled (configurable; non-default) ([fe52e0e](https://gitlab.com/to-be-continuous/docker/commit/fe52e0ebd9f851c7976f240942e9917d396bc813))
---
 CHANGELOG.md                         |  7 +++++++
 README.md                            | 10 +++++-----
 templates/gitlab-ci-docker-ecr.yml   |  2 +-
 templates/gitlab-ci-docker-gcp.yml   |  2 +-
 templates/gitlab-ci-docker-vault.yml |  2 +-
 templates/gitlab-ci-docker.yml       |  4 ++--
 6 files changed, 17 insertions(+), 10 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b492eda..84b9bb3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [5.6.0](https://gitlab.com/to-be-continuous/docker/compare/5.5.6...5.6.0) (2023-12-4)
+
+
+### Features
+
+* build cache can be disabled (configurable; non-default) ([fe52e0e](https://gitlab.com/to-be-continuous/docker/commit/fe52e0ebd9f851c7976f240942e9917d396bc813))
+
 ## [5.5.6](https://gitlab.com/to-be-continuous/docker/compare/5.5.5...5.5.6) (2023-12-2)
 
 
diff --git a/README.md b/README.md
index d9dbb85..bf7a147 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 `.g
 ```yaml
 include:
   - project: 'to-be-continuous/docker'
-    ref: '5.5.6'
+    ref: '5.6.0'
     file: '/templates/gitlab-ci-docker.yml'
 ```
 
@@ -505,7 +505,7 @@ Here is a `.gitlab-ci.yaml` using an external Docker registry:
 ```yaml
 include:
   - project: 'to-be-continuous/docker'
-    ref: '5.5.6'
+    ref: '5.6.0'
     file: '/templates/gitlab-ci-docker.yml'
 
 variables:
@@ -523,7 +523,7 @@ Here is a `.gitlab-ci.yaml` that builds 2 Docker images from the same project (u
 ```yaml
 include:
   - project: 'to-be-continuous/docker'
-    ref: '5.5.6'
+    ref: '5.6.0'
     file: '/templates/gitlab-ci-docker.yml'
 
 variables:
@@ -581,11 +581,11 @@ With:
 include:
   # main template
   - project: 'to-be-continuous/docker'
-    ref: '5.5.6'
+    ref: '5.6.0'
     file: '/templates/gitlab-ci-docker.yml'
   # Vault variant
   - project: 'to-be-continuous/docker'
-    ref: '5.5.6'
+    ref: '5.6.0'
     file: '/templates/gitlab-ci-docker-vault.yml'
 
 variables:
diff --git a/templates/gitlab-ci-docker-ecr.yml b/templates/gitlab-ci-docker-ecr.yml
index 9ec4db7..f491cfe 100644
--- a/templates/gitlab-ci-docker-ecr.yml
+++ b/templates/gitlab-ci-docker-ecr.yml
@@ -8,7 +8,7 @@ variables:
 .docker-base:
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "docker", "5.5.6"]
+      command: ["--service", "docker", "5.6.0"]
     - name: "$TBC_AWS_PROVIDER_IMAGE"
       alias: "aws-auth-provider"
   id_tokens:
diff --git a/templates/gitlab-ci-docker-gcp.yml b/templates/gitlab-ci-docker-gcp.yml
index 6afb171..5321ede 100644
--- a/templates/gitlab-ci-docker-gcp.yml
+++ b/templates/gitlab-ci-docker-gcp.yml
@@ -8,7 +8,7 @@ variables:
 .docker-base:
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "docker", "5.5.6"]
+      command: ["--service", "docker", "5.6.0"]
     - name: "$TBC_GCP_PROVIDER_IMAGE"
       alias: "gcp-auth-provider"
   variables:
diff --git a/templates/gitlab-ci-docker-vault.yml b/templates/gitlab-ci-docker-vault.yml
index 262718f..5b94139 100644
--- a/templates/gitlab-ci-docker-vault.yml
+++ b/templates/gitlab-ci-docker-vault.yml
@@ -12,7 +12,7 @@ variables:
 .docker-base:
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "docker", "5.5.6"]
+      command: ["--service", "docker", "5.6.0"]
     - name: "$TBC_VAULT_IMAGE"
       alias: "vault-secrets-provider"
   variables:
diff --git a/templates/gitlab-ci-docker.yml b/templates/gitlab-ci-docker.yml
index ae5259a..50f2dc8 100644
--- a/templates/gitlab-ci-docker.yml
+++ b/templates/gitlab-ci-docker.yml
@@ -485,7 +485,7 @@ stages:
 .docker-base:
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "docker", "5.5.6"]
+      command: ["--service", "docker", "5.6.0"]
   before_script:
     - *docker-scripts
 
@@ -518,7 +518,7 @@ stages:
     _TRACE: "${TRACE}"
   services:
     - name: "$TBC_TRACKING_IMAGE"
-      command: ["--service", "docker", "5.5.6"]
+      command: ["--service", "docker", "5.6.0"]
     - name: $DOCKER_DIND_IMAGE
       alias: docker
       command:
-- 
GitLab