From 162e19760e63a8b2e16db245dd47d748f6ebc636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rospars?= Date: Tue, 12 Mar 2024 17:52:39 +0100 Subject: [PATCH] #42 : Removed helm parameter, to use always the latest helm version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sébastien Rospars --- .github/workflows/java-microservice-ci-default.yml | 9 +-------- .github/workflows/js-web-ci-default.yml | 10 ++-------- README.md | 3 --- 3 files changed, 3 insertions(+), 19 deletions(-) diff --git a/.github/workflows/java-microservice-ci-default.yml b/.github/workflows/java-microservice-ci-default.yml index e0535f1..e7e77d5 100644 --- a/.github/workflows/java-microservice-ci-default.yml +++ b/.github/workflows/java-microservice-ci-default.yml @@ -13,11 +13,6 @@ on: type: string required: false default: "17" - helm_version: - description: "The helm version (default to 3.13.3)" - type: string - required: false - default: "3.13.3" slack_channel_id_ci: description: "The CI Slack channel's id" type: string @@ -104,10 +99,8 @@ jobs: cache: maven # Setup helm - - name: Set up helm ${{ inputs.helm_version }} + - name: Set up helm uses: azure/setup-helm@v4 - with: - version: ${{ inputs.helm_version }} # Cache Sonarcloud packages - name: Cache SonarCloud packages diff --git a/.github/workflows/js-web-ci-default.yml b/.github/workflows/js-web-ci-default.yml index b6ec633..79495e6 100644 --- a/.github/workflows/js-web-ci-default.yml +++ b/.github/workflows/js-web-ci-default.yml @@ -8,11 +8,6 @@ on: type: string required: false default: "20" - helm_version: - description: "The helm version (default to 3.13.3)" - type: string - required: false - default: "3.13.3" slack_channel_id_ci: description: "The CI Slack channel's id" type: string @@ -86,10 +81,9 @@ jobs: with: node-version: ${{ inputs.node_version }} cache: npm - - name: Set up helm ${{ inputs.helm_version }} + - name: Set up helm uses: azure/setup-helm@v4 - with: - version: ${{ inputs.helm_version }} + - name: Cache SonarCloud packages uses: actions/cache@v4 with: diff --git a/README.md b/README.md index cda1559..cf4ede4 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,6 @@ |-----------------------------|--------|----------|---------------------------------------------------------------------------------------------| | java_distribution | String | false | The java distribution (default to temurin) | | java_version | String | false | The java version (default to 17) | -| helm_version | String | false | The helm version (default to 3.12.0) | | slack_channel_id_ci | String | true | The CI Slack channel's id | | slack_channel_id_ci_release | String | true | The CI release Slack channel's id | | sonar_organization | String | true | The sonar organization | @@ -142,7 +141,6 @@ jobs: BRUXLESS_GH_APP_KEY: ${{ secrets.BRUXLESS_GH_APP_KEY }} ``` - ### Javascript web Micro-Service CI [Source](.github/workflows/js-web-ci-default.yml) @@ -152,7 +150,6 @@ jobs: | Parameter Name | Type | Required | Description | |-----------------------------|--------|----------|---------------------------------------------------------------------------------------------| | node_version | String | false | The Node version (default to 16) | -| helm_version | String | false | The helm version (default to 3.12.0) | | slack_channel_id_ci | String | true | The CI Slack channel's id | | slack_channel_id_ci_release | String | true | The CI release Slack channel's id | | sonar_organization | String | true | The sonar organization |