From d121254862bd437c4feb895cae5a9c01d8805abd Mon Sep 17 00:00:00 2001 From: michaelroytman Date: Fri, 19 Apr 2024 15:10:07 -0400 Subject: [PATCH] fix: broken mysql8-migrations workflow due to python-xmlsec The latest version of python-xmlsec is breaking the mysql8-migrations Github action. See https://github.com/xmlsec/python-xmlsec/issues/314. The recommended course of action is to pin the vesrion of python-xmlsec in the action. --- .github/workflows/mysql8-check-migrations.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mysql8-check-migrations.yml b/.github/workflows/mysql8-check-migrations.yml index 8cc1dcee..3ffc391e 100644 --- a/.github/workflows/mysql8-check-migrations.yml +++ b/.github/workflows/mysql8-check-migrations.yml @@ -56,7 +56,8 @@ 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: |