File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 lint :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
12+ - uses : actions/checkout@v6
1313 - run : pipx install ruff
1414 - run : ruff check src/
1515 - run : ruff format src/
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ jobs:
3535 mysql --version
3636 mysql -uroot -proot -e "CREATE DATABASE mysqldb_test"
3737
38- - uses : actions/checkout@v4
38+ - uses : actions/checkout@v6
3939
4040 - name : Set up Python ${{ matrix.python-version }}
41- uses : actions/setup-python@v5
41+ uses : actions/setup-python@v6
4242 with :
4343 python-version : ${{ matrix.python-version }}
4444 cache : " pip"
5959 run : |
6060 pytest --cov=MySQLdb tests
6161
62- - uses : codecov/codecov-action@v5
62+ - uses : codecov/codecov-action@v7
6363
6464 django-test :
6565 name : " Run Django LTS test suite"
@@ -78,10 +78,10 @@ jobs:
7878 mysql -uroot -proot -e "CREATE USER 'scott'@'%' IDENTIFIED BY 'tiger'; GRANT ALL ON *.* TO scott;"
7979 mysql -uroot -proot -e "CREATE DATABASE django_default; CREATE DATABASE django_other;"
8080
81- - uses : actions/checkout@v4
81+ - uses : actions/checkout@v6
8282
8383 - name : Set up Python
84- uses : actions/setup-python@v5
84+ uses : actions/setup-python@v6
8585 with :
8686 python-version : " 3.12"
8787 cache : " pip"
Original file line number Diff line number Diff line change 1414 steps :
1515 - name : Cache Connector
1616 id : cache-connector
17- uses : actions/cache@v4
17+ uses : actions/cache@v5
1818 with :
1919 path : c:/mariadb-connector
2020 key : mariadb-connector-c-${{ env.CONNECTOR_VERSION }}-win-2
5656 cmake -DCMAKE_INSTALL_PREFIX=c:/mariadb-connector -DCMAKE_INSTALL_COMPONENT=Development -DCMAKE_BUILD_TYPE=Release -P cmake_install.cmake
5757
5858 - name : Checkout mysqlclient
59- uses : actions/checkout@v4
59+ uses : actions/checkout@v6
6060 with :
6161 path : mysqlclient
6262
7373 EOF
7474 cat site.cfg
7575
76- - uses : actions/setup-python@v5
76+ - uses : actions/setup-python@v6
7777 - name : Install cibuildwheel
7878 run : python -m pip install cibuildwheel
7979 - name : Build wheels
9191 python -m build -s -o dist
9292
9393 - name : Upload Wheel
94- uses : actions/upload-artifact@v4
94+ uses : actions/upload-artifact@v7
9595 with :
9696 name : win-wheels
9797 path : mysqlclient/dist/*.*
You can’t perform that action at this time.
0 commit comments