From c9dcf1f430742d4f06f7e6e53a0d78318c371b41 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:17:28 +0300 Subject: [PATCH 01/17] Update pull-request-checker.yml --- .github/workflows/pull-request-checker.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index 2532f76..7917ba3 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -36,13 +36,14 @@ jobs: - name: Build Project # Build with npm run: npm run build + # Performs the project analysis using SonarQube Scanner. - uses: sonarsource/sonarqube-scan-action@v3 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - # If you wish to fail your job when the Quality Gate is red, uncomment the - # following lines. This would typically be used to fail a deployment. - # - uses: sonarsource/sonarqube-quality-gate-action@master - # timeout-minutes: 5 - # env: - # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + # Checks the SonarQube Quality Gate status. + - uses: sonarsource/sonarqube-quality-gate-action@master + timeout-minutes: 5 # Maximum allowed time for this step to run (5 minutes) + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From e702dbe276596730af65fa64629849cfae12030b Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:22:59 +0300 Subject: [PATCH 02/17] Update application-health-checker.yml --- .../workflows/application-health-checker.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index 9b63f6d..ddfc6a6 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -29,14 +29,15 @@ jobs: - name: Build Project # Build with npm run: npm run build - + + # Performs the project analysis using SonarQube Scanner. - uses: sonarsource/sonarqube-scan-action@v3 env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to access the SonarQube server SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - # If you wish to fail your job when the Quality Gate is red, uncomment the - # following lines. This would typically be used to fail a deployment. - # - uses: sonarsource/sonarqube-quality-gate-action@master - # timeout-minutes: 5 - # env: - # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + # Checks the SonarQube Quality Gate status. + - uses: sonarsource/sonarqube-quality-gate-action@master + timeout-minutes: 5 # Maximum allowed time for this step to run (5 minutes) + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to retrieve the Quality Gate result From cc170f2473dc3ec81958f2bfcd5d49f023a1ae06 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 13:23:41 +0300 Subject: [PATCH 03/17] Update pull-request-checker.yml --- .github/workflows/pull-request-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index 7917ba3..59aa712 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -39,11 +39,11 @@ jobs: # Performs the project analysis using SonarQube Scanner. - uses: sonarsource/sonarqube-scan-action@v3 env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to access the SonarQube server SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} # Checks the SonarQube Quality Gate status. - uses: sonarsource/sonarqube-quality-gate-action@master timeout-minutes: 5 # Maximum allowed time for this step to run (5 minutes) env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to retrieve the Quality Gate result From 760403c52b7261050e90ebbf39029c85680453eb Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:40:54 +0300 Subject: [PATCH 04/17] Update pull-request-checker.yml --- .github/workflows/pull-request-checker.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index 59aa712..c3a1c17 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -39,11 +39,13 @@ jobs: # Performs the project analysis using SonarQube Scanner. - uses: sonarsource/sonarqube-scan-action@v3 env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to access the SonarQube server + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # If you wish to fail your job when the Quality Gate is red, uncomment the + # following lines. This would typically be used to fail a deployment. # Checks the SonarQube Quality Gate status. - - uses: sonarsource/sonarqube-quality-gate-action@master - timeout-minutes: 5 # Maximum allowed time for this step to run (5 minutes) - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to retrieve the Quality Gate result + #- uses: sonarsource/sonarqube-quality-gate-action@master + # timeout-minutes: 5 + # env: + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From bc0442ef276eb60697e4ae696482d5abac2727e1 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:42:25 +0300 Subject: [PATCH 05/17] Update application-health-checker.yml --- .github/workflows/application-health-checker.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index ddfc6a6..d309c2c 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -33,11 +33,13 @@ jobs: # Performs the project analysis using SonarQube Scanner. - uses: sonarsource/sonarqube-scan-action@v3 env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to access the SonarQube server + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # If you wish to fail your job when the Quality Gate is red, uncomment the + # following lines. This would typically be used to fail a deployment. # Checks the SonarQube Quality Gate status. - - uses: sonarsource/sonarqube-quality-gate-action@master - timeout-minutes: 5 # Maximum allowed time for this step to run (5 minutes) - env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} # Authentication token required to retrieve the Quality Gate result + #- uses: sonarsource/sonarqube-quality-gate-action@master + # timeout-minutes: 5 + # env: + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From a803946e03f6fd176734b2ad0a6efe1ed56446ff Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:59:48 +0300 Subject: [PATCH 06/17] Update application-health-checker.yml --- .github/workflows/application-health-checker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index d309c2c..28c09ea 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -39,7 +39,7 @@ jobs: # If you wish to fail your job when the Quality Gate is red, uncomment the # following lines. This would typically be used to fail a deployment. # Checks the SonarQube Quality Gate status. - #- uses: sonarsource/sonarqube-quality-gate-action@master - # timeout-minutes: 5 - # env: - # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + - uses: sonarsource/sonarqube-quality-gate-action@master + timeout-minutes: 5 + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 9aaf30b198e703d677341fc127d5355479f2116c Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Mon, 23 Dec 2024 21:00:25 +0300 Subject: [PATCH 07/17] Update pull-request-checker.yml --- .github/workflows/pull-request-checker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index c3a1c17..157b969 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -45,7 +45,7 @@ jobs: # If you wish to fail your job when the Quality Gate is red, uncomment the # following lines. This would typically be used to fail a deployment. # Checks the SonarQube Quality Gate status. - #- uses: sonarsource/sonarqube-quality-gate-action@master - # timeout-minutes: 5 - # env: - # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + - uses: sonarsource/sonarqube-quality-gate-action@master + timeout-minutes: 5 + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From afb803d9463e2eda3e7042e0619ac773ef065529 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:50:42 +0300 Subject: [PATCH 08/17] Update .github/workflows/application-health-checker.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Buğra Ercan <38170967+sanshigo345@users.noreply.github.com> --- .github/workflows/application-health-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index 28c09ea..6687036 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -36,8 +36,8 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - # If you wish to fail your job when the Quality Gate is red, uncomment the - # following lines. This would typically be used to fail a deployment. + # If you wish to not fail your job when the Quality Gate is red, comment out the + # following lines. # Checks the SonarQube Quality Gate status. - uses: sonarsource/sonarqube-quality-gate-action@master timeout-minutes: 5 From c06b45e6a4aac027e20913dd13179a27d0992bfc Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:54:45 +0300 Subject: [PATCH 09/17] Update .github/workflows/application-health-checker.yml Co-authored-by: Agit Rubar Demir <61833677+agitrubard@users.noreply.github.com> --- .github/workflows/application-health-checker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index 6687036..c444231 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -30,8 +30,7 @@ jobs: - name: Build Project # Build with npm run: npm run build - # Performs the project analysis using SonarQube Scanner. - - uses: sonarsource/sonarqube-scan-action@v3 + - uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner. env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} From a9ec55d5b9d1ba2400b9fe903ee80e86deb47cdb Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:55:42 +0300 Subject: [PATCH 10/17] Update .github/workflows/application-health-checker.yml Co-authored-by: Agit Rubar Demir <61833677+agitrubard@users.noreply.github.com> --- .github/workflows/application-health-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index c444231..b23e183 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -32,7 +32,7 @@ jobs: - uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner. env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} # If you wish to not fail your job when the Quality Gate is red, comment out the From fa4cbf0b330b451d5b46b401202cc15822736801 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:55:55 +0300 Subject: [PATCH 11/17] Update .github/workflows/pull-request-checker.yml Co-authored-by: Agit Rubar Demir <61833677+agitrubard@users.noreply.github.com> --- .github/workflows/pull-request-checker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index 157b969..d9b14a5 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -36,8 +36,7 @@ jobs: - name: Build Project # Build with npm run: npm run build - # Performs the project analysis using SonarQube Scanner. - - uses: sonarsource/sonarqube-scan-action@v3 + - uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner. env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} From ef4c8e24d0304f5e7ca2c6fea3cb14e9b31da659 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:56:21 +0300 Subject: [PATCH 12/17] Update .github/workflows/pull-request-checker.yml Co-authored-by: Agit Rubar Demir <61833677+agitrubard@users.noreply.github.com> --- .github/workflows/pull-request-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index d9b14a5..05a9730 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -38,7 +38,7 @@ jobs: - uses: sonarsource/sonarqube-scan-action@v3 # Performs the project analysis using SonarQube Scanner. env: - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} # If you wish to fail your job when the Quality Gate is red, uncomment the From 60006abdb29e87607f2f784aa7e289d45010c11a Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:56:36 +0300 Subject: [PATCH 13/17] Update .github/workflows/pull-request-checker.yml Co-authored-by: Agit Rubar Demir <61833677+agitrubard@users.noreply.github.com> --- .github/workflows/pull-request-checker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index 05a9730..58069a1 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -43,8 +43,7 @@ jobs: # If you wish to fail your job when the Quality Gate is red, uncomment the # following lines. This would typically be used to fail a deployment. - # Checks the SonarQube Quality Gate status. - - uses: sonarsource/sonarqube-quality-gate-action@master + - uses: sonarsource/sonarqube-quality-gate-action@master # Checks the SonarQube Quality Gate status. timeout-minutes: 5 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 8ef1267d1c7e50ec5fd41cb431d9811157346a82 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:59:30 +0300 Subject: [PATCH 14/17] Update pull-request-checker.yml --- .github/workflows/pull-request-checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index 58069a1..ee8bf27 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -41,8 +41,8 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} - # If you wish to fail your job when the Quality Gate is red, uncomment the - # following lines. This would typically be used to fail a deployment. + # If you wish to not fail your job when the Quality Gate is red, comment out the + # following lines. - uses: sonarsource/sonarqube-quality-gate-action@master # Checks the SonarQube Quality Gate status. timeout-minutes: 5 env: From d697666be47ef8a6af81c79a474819bc14deb072 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Tue, 24 Dec 2024 19:59:56 +0300 Subject: [PATCH 15/17] Update application-health-checker.yml --- .github/workflows/application-health-checker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index b23e183..a026a11 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -37,8 +37,7 @@ jobs: # If you wish to not fail your job when the Quality Gate is red, comment out the # following lines. - # Checks the SonarQube Quality Gate status. - - uses: sonarsource/sonarqube-quality-gate-action@master + - uses: sonarsource/sonarqube-quality-gate-action@master # Checks the SonarQube Quality Gate status. timeout-minutes: 5 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 6687d8ff623ed130fc0e25e3b9ca1a6d9de74835 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Thu, 16 Jan 2025 19:58:10 +0300 Subject: [PATCH 16/17] Update application-health-checker.yml --- .github/workflows/application-health-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/application-health-checker.yml b/.github/workflows/application-health-checker.yml index a026a11..74ca6cf 100644 --- a/.github/workflows/application-health-checker.yml +++ b/.github/workflows/application-health-checker.yml @@ -16,7 +16,7 @@ jobs: run: sudo apt-get update - name: Checkout code # Step to check out the code from the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis From e9a44d9dbc5eec90044fb2f88c06fde4740d3df4 Mon Sep 17 00:00:00 2001 From: Pelin Kanar <75616714+plnknr@users.noreply.github.com> Date: Thu, 16 Jan 2025 19:58:28 +0300 Subject: [PATCH 17/17] Update pull-request-checker.yml --- .github/workflows/pull-request-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-checker.yml b/.github/workflows/pull-request-checker.yml index ee8bf27..9d8117c 100644 --- a/.github/workflows/pull-request-checker.yml +++ b/.github/workflows/pull-request-checker.yml @@ -22,7 +22,7 @@ jobs: run: sudo apt-get update - name: Checkout code # Step to check out the code from the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis