From 3868d558233e02cbb1af555a9d21ac27209f5bef Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 12:06:33 +0300 Subject: [PATCH 01/11] chore: update nodejs on github ci --- .github/workflows/add_closed_at_field.yml | 2 +- .github/workflows/add_created_at_field.yml | 2 +- .github/workflows/base.yml | 22 +++++++++++----------- .github/workflows/e2e.yml | 6 +++--- .github/workflows/qualityGate.yml | 8 ++++---- .github/workflows/qualityGateCommentPR.yml | 4 ++-- .github/workflows/test.yml | 8 ++++---- 7 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/add_closed_at_field.yml b/.github/workflows/add_closed_at_field.yml index c75d6c82c0..8d85310d02 100644 --- a/.github/workflows/add_closed_at_field.yml +++ b/.github/workflows/add_closed_at_field.yml @@ -11,7 +11,7 @@ jobs: name: Update closed_at issue field runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - uses: monry/actions-get-project-item-id@v2 with: github-token: ${{ secrets.UUI_CI_SECRET }} diff --git a/.github/workflows/add_created_at_field.yml b/.github/workflows/add_created_at_field.yml index 2091bde484..aeb1c608fb 100644 --- a/.github/workflows/add_created_at_field.yml +++ b/.github/workflows/add_created_at_field.yml @@ -11,7 +11,7 @@ jobs: name: Update created_at issue field runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - uses: monry/actions-get-project-item-id@v2 with: github-token: ${{ secrets.UUI_CI_SECRET }} diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 206c931df5..3b5fb2044e 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -53,12 +53,12 @@ jobs: VALUES_FILE: ${{ inputs.values-file }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' cache-dependency-path: | **/yarn.lock @@ -80,7 +80,7 @@ jobs: - name: Authenticate to Cloud id: auth - uses: 'google-github-actions/auth@v2' + uses: 'google-github-actions/auth@v3' with: token_format: access_token project_id: ${{ secrets.PROJECT_ID }} @@ -88,7 +88,7 @@ jobs: service_account: ${{ secrets.WFI_SA }} - name: Login to artifactory - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ secrets.ARTIFACTORY_REGISTRY_URL }} username: ${{ secrets.ARTIFACTORY_AUTH2_USER }} @@ -96,7 +96,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: # list of Docker images to use as base name for tags images: | @@ -107,11 +107,11 @@ jobs: type=sha - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Build and push id: docker_build - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: ./ file: ./Dockerfile @@ -121,20 +121,20 @@ jobs: # install Gitversion to obtain semver version - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.9.15 + uses: gittools/actions/gitversion/setup@v3 with: versionSpec: '5.8.3' # need to updated - name: Version determination id: gitversion - uses: gittools/actions/gitversion/execute@v0.9.15 + uses: gittools/actions/gitversion/execute@v3 with: additionalArguments: ${{ inputs.git-version-mode }} useConfigFile: true configFilePath: GitVersion.yml - name: Install Helm - uses: azure/setup-helm@v3 + uses: azure/setup-helm@v4 with: version: v3.8.0 diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 73475ab9f2..5606169140 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -17,10 +17,10 @@ jobs: runs-on: ubuntu-24.04 if: github.event.pull_request.draft == false steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' cache-dependency-path: | **/yarn.lock diff --git a/.github/workflows/qualityGate.yml b/.github/workflows/qualityGate.yml index ec7feebc3a..5b5793be84 100644 --- a/.github/workflows/qualityGate.yml +++ b/.github/workflows/qualityGate.yml @@ -32,21 +32,21 @@ jobs: # By default, it checks out the "merge-commit" for "pull_request" events (https://github.com/actions/checkout) # I.e. the result of merging source branch to the target branch will be checked out. - name: 'Checkout the "merge commit" branch' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: path: ${{ env.MERGE_COMMIT_BRANCH_DIR }} # Checkout the TARGET branch. - name: 'Checkout "target" branch' - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.base.ref }} repository: ${{ github.event.pull_request.base.repo.full_name }} path: ${{ env.TARGET_BRANCH_DIR }} - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' cache-dependency-path: | ${{ env.TARGET_BRANCH_DIR }}/yarn.lock diff --git a/.github/workflows/qualityGateCommentPR.yml b/.github/workflows/qualityGateCommentPR.yml index 89519a8975..bbc5253712 100644 --- a/.github/workflows/qualityGateCommentPR.yml +++ b/.github/workflows/qualityGateCommentPR.yml @@ -103,12 +103,12 @@ jobs: # Update comment: track-bundle-size # - id: prevCommentId - uses: peter-evans/find-comment@v2 + uses: peter-evans/find-comment@v3 with: issue-number: ${{ steps.readPrNumber.outputs.result }} comment-author: '${{env.COMMENT_AUTHOR}}' body-includes: '${{env.COMMENT_TAG}}' - - uses: peter-evans/create-or-update-comment@v3 + - uses: peter-evans/create-or-update-comment@v4 with: comment-id: ${{ steps.prevCommentId.outputs.comment-id }} issue-number: ${{ steps.readPrNumber.outputs.result }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 68b88d8182..39bd98ef7c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,13 +23,13 @@ jobs: # No need to run this job on "pull_request" from main UUI repo, because it's guaranteed it's already run on "push" event. if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'epam/UUI' || github.event_name == 'push' runs-on: ubuntu-latest - container: node:18 + container: node:22 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-node@v5 with: - node-version: '20.x' + node-version: '22.x' cache: 'yarn' cache-dependency-path: | **/yarn.lock From 7599c907bec45a90897075cc3ca7c31866c3f947 Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 13:11:33 +0300 Subject: [PATCH 02/11] fix: map gitversion v3 step outputs to env vars for helm steps --- .github/workflows/base.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 3b5fb2044e..7928c8303f 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -139,6 +139,8 @@ jobs: version: v3.8.0 - name: Preparation and Helm chart packaging + env: + GITVERSION_SHORTSHA: ${{ steps.gitversion.outputs.shortSha }} run: | echo ${{ steps.auth.outputs.access_token }} | helm registry login ${{ secrets.ARTIFACTORY_REGISTRY_URL }} --username ${{ secrets.ARTIFACTORY_AUTH2_USER }} --password-stdin mkdir helmchart && cd ./helmchart # helm cannot untar file to the repo with the same name as a package. To avoid error we create temp folder @@ -147,6 +149,9 @@ jobs: sed -i -e "s/tag: latest/tag: sha-${GITVERSION_SHORTSHA}/g" ${{ secrets.BASE_HELMCHART_NAME }}/${VALUES_FILE} - name: Packaging and Uploading Helm Chart + env: + GITVERSION_MAJOR: ${{ steps.gitversion.outputs.major }} + GITVERSION_MINOR: ${{ steps.gitversion.outputs.minor }} run: | cd ./helmchart # workaround to avoid Helm chart versioning issues From 8c6e19f604c5dc4fa7c8da3cd3aa4ef781d38c59 Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 13:51:41 +0300 Subject: [PATCH 03/11] chore: bump gittools/actions to v4 and setup-helm to v5 --- .github/workflows/base.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 7928c8303f..28f72e14e7 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -121,20 +121,20 @@ jobs: # install Gitversion to obtain semver version - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v3 + uses: gittools/actions/gitversion/setup@v4 with: versionSpec: '5.8.3' # need to updated - name: Version determination id: gitversion - uses: gittools/actions/gitversion/execute@v3 + uses: gittools/actions/gitversion/execute@v4 with: additionalArguments: ${{ inputs.git-version-mode }} useConfigFile: true configFilePath: GitVersion.yml - name: Install Helm - uses: azure/setup-helm@v4 + uses: azure/setup-helm@v5 with: version: v3.8.0 From 7162864332447135a10d5a724477ac275d011dcb Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 14:03:16 +0300 Subject: [PATCH 04/11] chore: bump docker/setup-buildx-action to v4 --- .github/workflows/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 28f72e14e7..1ff249bd68 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -107,7 +107,7 @@ jobs: type=sha - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Build and push id: docker_build From 4335bbbfcfdbe706b5621fb63fb1c732bbe44d7e Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 14:57:07 +0300 Subject: [PATCH 05/11] chore: upgrade GitVersion to v6, migrate GitVersion.yml config, update docker actions to Node.js 24 runtime --- .github/workflows/base.yml | 7 ++- GitVersion.yml | 98 ++++++++++++++++++++------------------ 2 files changed, 54 insertions(+), 51 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 1ff249bd68..574fe6e5d8 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -96,7 +96,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: # list of Docker images to use as base name for tags images: | @@ -111,7 +111,7 @@ jobs: - name: Build and push id: docker_build - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: ./ file: ./Dockerfile @@ -123,8 +123,7 @@ jobs: - name: Install GitVersion uses: gittools/actions/gitversion/setup@v4 with: - versionSpec: '5.8.3' - # need to updated + versionSpec: '6.8.2' - name: Version determination id: gitversion uses: gittools/actions/gitversion/execute@v4 diff --git a/GitVersion.yml b/GitVersion.yml index 382fa786d2..288236e303 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -1,47 +1,51 @@ -# see https://gitversion.net/docs/reference/configuration#branch-configuration -assembly-versioning-scheme: MajorMinorPatch -mode: ContinuousDeployment -next-version: 5.10.0 -increment: Patch -branches: - master: - regex: ^main$ - mode: ContinuousDeployment - tag: '' - increment: Patch - prevent-increment-of-merged-branch-version: false - track-merge-target: true - is-release-branch: false - develop: - regex: ^develop$ - mode: ContinuousDeployment - tag: 'dev' - increment: Patch - prevent-increment-of-merged-branch-version: false - track-merge-target: true - tracks-release-branches: true - is-release-branch: false - qa: - regex: ^feature.* - mode: ContinuousDeployment - tag: 'qa' - increment: Patch - source-branches: [ 'develop', 'main' ] - prevent-increment-of-merged-branch-version: false - track-merge-target: false - tracks-release-branches: false - is-release-branch: false - others: - regex: ^fix.*|^bug.* - mode: ContinuousDeployment - tag: 'fe' - increment: Inherit - prevent-increment-of-merged-branch-version: false - track-merge-target: false - source-branches: [ 'develop', 'main' ] - tracks-release-branches: false - is-release-branch: false - is-mainline: false -ignore: - commits-before: 2024-08-01T00:30:00 -merge-message-formats: {} +# see https://gitversion.net/docs/reference/configuration#branch-configuration +assembly-versioning-scheme: MajorMinorPatch +mode: ContinuousDeployment +next-version: 5.10.0 +increment: Patch +branches: + master: + regex: ^main$ + mode: ContinuousDeployment + label: '' + increment: Patch + prevent-increment: + of-merged-branch: false + track-merge-target: true + is-release-branch: false + develop: + regex: ^develop$ + mode: ContinuousDeployment + label: 'dev' + increment: Patch + prevent-increment: + of-merged-branch: false + track-merge-target: true + tracks-release-branches: true + is-release-branch: false + qa: + regex: ^feature.* + mode: ContinuousDeployment + label: 'qa' + increment: Patch + source-branches: [ 'develop', 'main' ] + prevent-increment: + of-merged-branch: false + track-merge-target: false + tracks-release-branches: false + is-release-branch: false + others: + regex: ^fix.*|^bug.* + mode: ContinuousDeployment + label: 'fe' + increment: Inherit + prevent-increment: + of-merged-branch: false + track-merge-target: false + source-branches: [ 'develop', 'main' ] + tracks-release-branches: false + is-release-branch: false + is-main-branch: false +ignore: + commits-before: 2024-08-01T00:30:00 +merge-message-formats: {} From 2133075f171225aaea05f8abaa430d075640d30f Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 15:22:29 +0300 Subject: [PATCH 06/11] revert: roll back GitVersion to v3/5.8.3, restore GitVersion.yml v5 format --- .github/workflows/base.yml | 6 +++--- GitVersion.yml | 22 +++++++++------------- 2 files changed, 12 insertions(+), 16 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 574fe6e5d8..3be41c2906 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -121,12 +121,12 @@ jobs: # install Gitversion to obtain semver version - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v4 + uses: gittools/actions/gitversion/setup@v3 with: - versionSpec: '6.8.2' + versionSpec: '5.8.3' - name: Version determination id: gitversion - uses: gittools/actions/gitversion/execute@v4 + uses: gittools/actions/gitversion/execute@v3 with: additionalArguments: ${{ inputs.git-version-mode }} useConfigFile: true diff --git a/GitVersion.yml b/GitVersion.yml index 288236e303..88b24146e1 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -7,45 +7,41 @@ branches: master: regex: ^main$ mode: ContinuousDeployment - label: '' + tag: '' increment: Patch - prevent-increment: - of-merged-branch: false + prevent-increment-of-merged-branch-version: false track-merge-target: true is-release-branch: false develop: regex: ^develop$ mode: ContinuousDeployment - label: 'dev' + tag: 'dev' increment: Patch - prevent-increment: - of-merged-branch: false + prevent-increment-of-merged-branch-version: false track-merge-target: true tracks-release-branches: true is-release-branch: false qa: regex: ^feature.* mode: ContinuousDeployment - label: 'qa' + tag: 'qa' increment: Patch source-branches: [ 'develop', 'main' ] - prevent-increment: - of-merged-branch: false + prevent-increment-of-merged-branch-version: false track-merge-target: false tracks-release-branches: false is-release-branch: false others: regex: ^fix.*|^bug.* mode: ContinuousDeployment - label: 'fe' + tag: 'fe' increment: Inherit - prevent-increment: - of-merged-branch: false + prevent-increment-of-merged-branch-version: false track-merge-target: false source-branches: [ 'develop', 'main' ] tracks-release-branches: false is-release-branch: false - is-main-branch: false + is-mainline: false ignore: commits-before: 2024-08-01T00:30:00 merge-message-formats: {} From 0570a0b8125d90b1f48138b4da6a50cf0d13ee2b Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 15:44:52 +0300 Subject: [PATCH 07/11] chore: upgrade GitVersion to v4/6.8.2, migrate config to v6 format with track-merge-target disabled --- .github/workflows/base.yml | 8 +++----- GitVersion.yml | 26 +++++++++++++++----------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 3be41c2906..f43859793b 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -121,15 +121,13 @@ jobs: # install Gitversion to obtain semver version - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v3 + uses: gittools/actions/gitversion/setup@v4 with: - versionSpec: '5.8.3' + versionSpec: '6.8.2' - name: Version determination id: gitversion - uses: gittools/actions/gitversion/execute@v3 + uses: gittools/actions/gitversion/execute@v4 with: - additionalArguments: ${{ inputs.git-version-mode }} - useConfigFile: true configFilePath: GitVersion.yml - name: Install Helm diff --git a/GitVersion.yml b/GitVersion.yml index 88b24146e1..6785d3fc1e 100644 --- a/GitVersion.yml +++ b/GitVersion.yml @@ -7,41 +7,45 @@ branches: master: regex: ^main$ mode: ContinuousDeployment - tag: '' + label: '' increment: Patch - prevent-increment-of-merged-branch-version: false - track-merge-target: true + prevent-increment: + of-merged-branch: false + track-merge-target: false is-release-branch: false develop: regex: ^develop$ mode: ContinuousDeployment - tag: 'dev' + label: 'dev' increment: Patch - prevent-increment-of-merged-branch-version: false - track-merge-target: true + prevent-increment: + of-merged-branch: false + track-merge-target: false tracks-release-branches: true is-release-branch: false qa: regex: ^feature.* mode: ContinuousDeployment - tag: 'qa' + label: 'qa' increment: Patch source-branches: [ 'develop', 'main' ] - prevent-increment-of-merged-branch-version: false + prevent-increment: + of-merged-branch: false track-merge-target: false tracks-release-branches: false is-release-branch: false others: regex: ^fix.*|^bug.* mode: ContinuousDeployment - tag: 'fe' + label: 'fe' increment: Inherit - prevent-increment-of-merged-branch-version: false + prevent-increment: + of-merged-branch: false track-merge-target: false source-branches: [ 'develop', 'main' ] tracks-release-branches: false is-release-branch: false - is-mainline: false + is-main-branch: false ignore: commits-before: 2024-08-01T00:30:00 merge-message-formats: {} From 9d3a926c79e4129a119288f870d50d507caf6808 Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 16:01:40 +0300 Subject: [PATCH 08/11] chore: add diagnostic verbosity to GitVersion step --- .github/workflows/base.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index f43859793b..76447cb895 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -129,6 +129,7 @@ jobs: uses: gittools/actions/gitversion/execute@v4 with: configFilePath: GitVersion.yml + verbosity: Diagnostic - name: Install Helm uses: azure/setup-helm@v5 From cef2630f956cef69a90a4f7d9e93c5b5d77ad646 Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 16:17:54 +0300 Subject: [PATCH 09/11] chore: downgrade GitVersion to 6.2.0 to fix hang on large tag set --- .github/workflows/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 76447cb895..fa18b7af7a 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -123,7 +123,7 @@ jobs: - name: Install GitVersion uses: gittools/actions/gitversion/setup@v4 with: - versionSpec: '6.8.2' + versionSpec: '6.2.0' - name: Version determination id: gitversion uses: gittools/actions/gitversion/execute@v4 From 80b35aa4e8dfc772b447d76e06d8248c770da8fa Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 16:35:23 +0300 Subject: [PATCH 10/11] chore: replace GitVersion with git commands for version determination --- .github/workflows/base.yml | 30 +++++++++++++----------------- .github/workflows/dev.yml | 1 - .github/workflows/prod.yml | 1 - .github/workflows/qa.yml | 1 - 4 files changed, 13 insertions(+), 20 deletions(-) diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index fa18b7af7a..a3747dd0b1 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -13,9 +13,6 @@ on: image-name: required: true type: string - git-version-mode: - required: true - type: string env: required: true type: string @@ -119,17 +116,16 @@ jobs: # Image will be tagged with all tags from "Docker meta" step tags: ${{ steps.meta.outputs.tags }} - # install Gitversion to obtain semver version - - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v4 - with: - versionSpec: '6.2.0' - - name: Version determination - id: gitversion - uses: gittools/actions/gitversion/execute@v4 - with: - configFilePath: GitVersion.yml - verbosity: Diagnostic + - name: Determine version + id: version + run: | + SHORT_SHA=$(echo "${GITHUB_SHA}" | cut -c1-7) + LATEST_TAG=$(git tag --sort=-version:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' | head -1) + MAJOR=$(echo $LATEST_TAG | sed 's/^v//' | cut -d. -f1) + MINOR=$(echo $LATEST_TAG | sed 's/^v//' | cut -d. -f2) + echo "shortSha=${SHORT_SHA}" >> $GITHUB_OUTPUT + echo "major=${MAJOR}" >> $GITHUB_OUTPUT + echo "minor=${MINOR}" >> $GITHUB_OUTPUT - name: Install Helm uses: azure/setup-helm@v5 @@ -138,7 +134,7 @@ jobs: - name: Preparation and Helm chart packaging env: - GITVERSION_SHORTSHA: ${{ steps.gitversion.outputs.shortSha }} + GITVERSION_SHORTSHA: ${{ steps.version.outputs.shortSha }} run: | echo ${{ steps.auth.outputs.access_token }} | helm registry login ${{ secrets.ARTIFACTORY_REGISTRY_URL }} --username ${{ secrets.ARTIFACTORY_AUTH2_USER }} --password-stdin mkdir helmchart && cd ./helmchart # helm cannot untar file to the repo with the same name as a package. To avoid error we create temp folder @@ -148,8 +144,8 @@ jobs: - name: Packaging and Uploading Helm Chart env: - GITVERSION_MAJOR: ${{ steps.gitversion.outputs.major }} - GITVERSION_MINOR: ${{ steps.gitversion.outputs.minor }} + GITVERSION_MAJOR: ${{ steps.version.outputs.major }} + GITVERSION_MINOR: ${{ steps.version.outputs.minor }} run: | cd ./helmchart # workaround to avoid Helm chart versioning issues diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 380b687854..df5b8fb7be 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -27,5 +27,4 @@ jobs: values-file: values.dev.yaml # TODO: After migrating prod environment we can use the same image name for prod and non-prod image-name: ui-dev - git-version-mode: '' env: 'dev' diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 0eba833993..22b97f8e8b 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -32,5 +32,4 @@ jobs: values-file: values.prod.yaml # TODO: After migrating prod environment we can use the same image name for prod and non-prod image-name: ui - git-version-mode: '' env: 'prod' \ No newline at end of file diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 72d8d13bf1..14b02975ae 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -27,5 +27,4 @@ jobs: values-file: values.qa.yaml # TODO: After migrating prod environment we can use the same image name for prod and non-prod image-name: ui-qa - git-version-mode: '' env: 'qa' From fe72e4c5eb20992340cdc90c967e7a70c75eaf8a Mon Sep 17 00:00:00 2001 From: Yuliya Miatlionak Date: Fri, 14 Aug 2026 16:44:42 +0300 Subject: [PATCH 11/11] chore: remove GitVersion.yml, no longer used in CI --- GitVersion.yml | 51 -------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 GitVersion.yml diff --git a/GitVersion.yml b/GitVersion.yml deleted file mode 100644 index 6785d3fc1e..0000000000 --- a/GitVersion.yml +++ /dev/null @@ -1,51 +0,0 @@ -# see https://gitversion.net/docs/reference/configuration#branch-configuration -assembly-versioning-scheme: MajorMinorPatch -mode: ContinuousDeployment -next-version: 5.10.0 -increment: Patch -branches: - master: - regex: ^main$ - mode: ContinuousDeployment - label: '' - increment: Patch - prevent-increment: - of-merged-branch: false - track-merge-target: false - is-release-branch: false - develop: - regex: ^develop$ - mode: ContinuousDeployment - label: 'dev' - increment: Patch - prevent-increment: - of-merged-branch: false - track-merge-target: false - tracks-release-branches: true - is-release-branch: false - qa: - regex: ^feature.* - mode: ContinuousDeployment - label: 'qa' - increment: Patch - source-branches: [ 'develop', 'main' ] - prevent-increment: - of-merged-branch: false - track-merge-target: false - tracks-release-branches: false - is-release-branch: false - others: - regex: ^fix.*|^bug.* - mode: ContinuousDeployment - label: 'fe' - increment: Inherit - prevent-increment: - of-merged-branch: false - track-merge-target: false - source-branches: [ 'develop', 'main' ] - tracks-release-branches: false - is-release-branch: false - is-main-branch: false -ignore: - commits-before: 2024-08-01T00:30:00 -merge-message-formats: {}