From 23836455120f59087f50cac74961c2baa08d1196 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Mon, 7 Aug 2023 22:28:49 +0000 Subject: [PATCH] chore(release): 3.2.0 [skip ci] # [3.2.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.1.0...3.2.0) (2023-08-07) ### Bug Fixes * **doc:** fix typo in readme documentation [skip-ci] ([666b545](https://gitlab.com/to-be-continuous/gcloud/commit/666b54594ade5bcb1927e139d3ea6c01d235abe3)) ### Features * support ID tokens in addition to CI_JOB_JWT ([f13362c](https://gitlab.com/to-be-continuous/gcloud/commit/f13362ce0e5f41ce9c9d9a94df1805b7add2a773)) --- CHANGELOG.md | 12 ++++++++++++ README.md | 8 ++++---- templates/gitlab-ci-gcloud-vault.yml | 2 +- templates/gitlab-ci-gcloud.yml | 2 +- 4 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0245e57..6ca974c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [3.2.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.1.0...3.2.0) (2023-08-07) + + +### Bug Fixes + +* **doc:** fix typo in readme documentation [skip-ci] ([666b545](https://gitlab.com/to-be-continuous/gcloud/commit/666b54594ade5bcb1927e139d3ea6c01d235abe3)) + + +### Features + +* support ID tokens in addition to CI_JOB_JWT ([f13362c](https://gitlab.com/to-be-continuous/gcloud/commit/f13362ce0e5f41ce9c9d9a94df1805b7add2a773)) + # [3.1.0](https://gitlab.com/to-be-continuous/gcloud/compare/3.0.0...3.1.0) (2023-05-27) diff --git a/README.md b/README.md index 8a73c89..66a74e8 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: '3.1.0' + ref: '3.2.0' file: '/templates/gitlab-ci-gcloud.yml' ``` @@ -334,7 +334,7 @@ Let's imagine a backend service: include: # Include Google Cloud template - project: 'to-be-continuous/gcloud' - ref: '3.1.0' + ref: '3.2.0' file: '/templates/gitlab-ci-gcloud.yml' ... @@ -487,11 +487,11 @@ The ID token can be configured as follows in your `.gitlab-ci.yml` file: include: # main template - project: 'to-be-continuous/gcloud' - ref: '3.1.0' + ref: '3.2.0' file: '/templates/gitlab-ci-gcloud.yml' # Vault variant - project: 'to-be-continuous/gcloud' - ref: '3.1.0' + ref: '3.2.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 13a6d22..0c768df 100644 --- a/templates/gitlab-ci-gcloud-vault.yml +++ b/templates/gitlab-ci-gcloud-vault.yml @@ -12,6 +12,6 @@ variables: .gcp-base: services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "gcloud", "3.1.0" ] + command: ["--service", "gcloud", "3.2.0" ] - name: "$TBC_VAULT_IMAGE" alias: "vault-secrets-provider" diff --git a/templates/gitlab-ci-gcloud.yml b/templates/gitlab-ci-gcloud.yml index b576935..ff39d66 100644 --- a/templates/gitlab-ci-gcloud.yml +++ b/templates/gitlab-ci-gcloud.yml @@ -394,7 +394,7 @@ stages: image: $GCP_CLI_IMAGE services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "gcloud", "3.1.0" ] + command: ["--service", "gcloud", "3.2.0" ] before_script: - *gcp-scripts - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}" -- GitLab