From db04c749968ac368bb6a1098e4ed1fa82cf8a605 Mon Sep 17 00:00:00 2001 From: michaelroytman Date: Fri, 19 Apr 2024 15:13:59 -0400 Subject: [PATCH] fix: broken mysql8-migrations-check workflow due to python-xmlsec The latest version of python-xmlsec is breaking the mysql8-migrations-check 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-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mysql8-migrations-check.yml b/.github/workflows/mysql8-migrations-check.yml index 76e06201..2f3defaf 100644 --- a/.github/workflows/mysql8-migrations-check.yml +++ b/.github/workflows/mysql8-migrations-check.yml @@ -53,7 +53,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