Skip to content

Commit

Permalink
fix: broken mysql8-migrations-check workflow due to python-xmlsec
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MichaelRoytman committed Apr 19, 2024
1 parent 3234993 commit db04c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/mysql8-migrations-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit db04c74

Please sign in to comment.