From ef6cbd43a27453cad8825bc738fc97779968907b Mon Sep 17 00:00:00 2001 From: michaelroytman Date: Fri, 19 Apr 2024 15:12:48 -0400 Subject: [PATCH] fix: broken mysql-migrations workflow due to python-xmlsec The latest version of python-xmlsec is breaking the mysql-migrations Github action. See https://github.com/xmlsec/python-xmlsec/issues/314. The recommended course of action is to pin the version of python-xmlsec in the action. --- .github/workflows/mysql-migrations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mysql-migrations.yml b/.github/workflows/mysql-migrations.yml index 41cbc509f..645c4650e 100644 --- a/.github/workflows/mysql-migrations.yml +++ b/.github/workflows/mysql-migrations.yml @@ -52,7 +52,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: |