From 4909e51533e22118abd64fe2de6ccca7995f0c40 Mon Sep 17 00:00:00 2001 From: michaelroytman Date: Fri, 19 Apr 2024 15:06:17 -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 version of python-xmlsec in the action. --- .github/workflows/mysql8-migrations.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mysql8-migrations.yml b/.github/workflows/mysql8-migrations.yml index 28cf747f..bbdc2f47 100644 --- a/.github/workflows/mysql8-migrations.yml +++ b/.github/workflows/mysql8-migrations.yml @@ -51,7 +51,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: | sudo /etc/init.d/mysql start