Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/java-microservice-ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/js-web-ci-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down Expand Up @@ -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)
Expand All @@ -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 |
Expand Down