Skip to content

Commit db04c74

Browse files
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 xmlsec/python-xmlsec#314. The recommended course of action is to pin the version of python-xmlsec in the action.
1 parent 3234993 commit db04c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/mysql8-migrations-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
pip uninstall -y mysqlclient
5454
pip install --no-binary mysqlclient mysqlclient
5555
pip uninstall -y xmlsec
56-
pip install --no-binary xmlsec xmlsec
56+
pip install --no-binary xmlsec xmlsec==1.3.13
5757
- name: Initiate services
5858
run: |
5959
sudo /etc/init.d/mysql start

0 commit comments

Comments
 (0)