Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
fix: broken mysql8-migrations 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 Github action. See xmlsec/python-xmlsec#314.

The recommended course of action is to pin the vesrion of python-xmlsec in the action.
  • Loading branch information
MichaelRoytman committed Apr 19, 2024
1 parent dd05f76 commit d121254
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/mysql8-check-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit d121254

Please sign in to comment.