From cbba4d83d1b8432ca3a3557bbe8a424bf042d2ad Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Wed, 2 Oct 2024 15:51:56 +0200 Subject: [PATCH] Add SCRAM authentication to CI workflows This commit introduces SCRAM authentication configurations to both `codecov.yml` and `sonarqube.yml` GitHub Action workflow files. The changes include new environment variables for SCRAM host, user, and password to enhance the security and flexibility of the CI processes. --- .github/workflows/codecov.yml | 4 ++++ .github/workflows/sonarqube.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 9ab2f52..a8a5a8f 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -27,6 +27,10 @@ env: TEST_SMTPAUTH_USER: ${{ secrets.TEST_USER }} TEST_SMTPAUTH_PASS: ${{ secrets.TEST_PASS }} TEST_SMTPAUTH_TYPE: "LOGIN" + TEST_ONLINE_SCRAM: "1" + TEST_HOST_SCRAM: ${{ secrets.TEST_HOST_SCRAM }} + TEST_USER_SCRAM: ${{ secrets.TEST_USER_SCRAM }} + TEST_PASS_SCRAM: ${{ secrets.TEST_USER_SCRAM }} permissions: contents: read diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index 0f54b09..16ab41a 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -21,6 +21,10 @@ env: TEST_SMTPAUTH_USER: ${{ secrets.TEST_USER }} TEST_SMTPAUTH_PASS: ${{ secrets.TEST_PASS }} TEST_SMTPAUTH_TYPE: "LOGIN" + TEST_ONLINE_SCRAM: "1" + TEST_HOST_SCRAM: ${{ secrets.TEST_HOST_SCRAM }} + TEST_USER_SCRAM: ${{ secrets.TEST_USER_SCRAM }} + TEST_PASS_SCRAM: ${{ secrets.TEST_USER_SCRAM }} jobs: build: name: Build