From 04925125ebcc053e2bb32a6884eb7f5a55f1e7a9 Mon Sep 17 00:00:00 2001 From: Muhammad Afaq Shuaib Date: Fri, 19 Apr 2024 18:12:46 +0500 Subject: [PATCH] build: fix ci-workflow migration issue (#4332) --- .github/workflows/migrations-check-mysql8.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/migrations-check-mysql8.yml b/.github/workflows/migrations-check-mysql8.yml index 3beff4c3a0..1267ebb5da 100644 --- a/.github/workflows/migrations-check-mysql8.yml +++ b/.github/workflows/migrations-check-mysql8.yml @@ -47,6 +47,8 @@ jobs: lsb_release -a mysql -V + # pinning xmlsec to version 1.3.13 to avoid the CI error, migration checks are failing due to an issue in the latest release of python-xmlsec + # https://github.com/xmlsec/python-xmlsec/issues/314 - name: Install Python dependencies run: | pip install -r requirements/pip_tools.txt @@ -54,7 +56,7 @@ jobs: pip uninstall -y mysqlclient pip install --no-binary mysqlclient mysqlclient pip uninstall -y xmlsec - pip install --no-binary xmlsec xmlsec + pip install --no-binary xmlsec xmlsec==1.3.13 - name: Initiate Services run: |