Skip to content

Commit d065827

Browse files
authored
Update windows build workflow (#585)
Use MariaDB Connector/C 3.3.4
1 parent 17c4e46 commit d065827

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/windows.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
build:
1212
runs-on: windows-latest
1313
env:
14-
CONNECTOR_VERSION: "3.3.1"
14+
CONNECTOR_VERSION: "3.3.4"
1515
steps:
1616

1717
- name: Cache Connector
1818
id: cache-connector
19-
uses: actions/cache@v1
19+
uses: actions/cache@v3
2020
with:
2121
path: c:/mariadb-connector
2222
key: mariadb-connector-c-${{ env.CONNECTOR_VERSION }}-win
@@ -41,7 +41,7 @@ jobs:
4141
cmake -DCMAKE_INSTALL_PREFIX=c:/mariadb-connector -DCMAKE_INSTALL_COMPONENT=Development -DCMAKE_BUILD_TYPE=Release -P cmake_install.cmake
4242
4343
- name: Checkout mysqlclient
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v3
4545
with:
4646
path: mysqlclient
4747

@@ -58,9 +58,9 @@ jobs:
5858
EOF
5959
cat site.cfg
6060
61-
- uses: actions/setup-python@v2
61+
- uses: actions/setup-python@v4
6262
- name: Install cibuildwheel
63-
run: python -m pip install cibuildwheel==2.7.0
63+
run: python -m pip install cibuildwheel==2.12.3
6464
- name: Build wheels
6565
working-directory: mysqlclient
6666
env:
@@ -70,7 +70,7 @@ jobs:
7070
run: "python -m cibuildwheel --prerelease-pythons --output-dir dist"
7171

7272
- name: Upload Wheel
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
name: win-wheels
7676
path: mysqlclient/dist/*.whl

0 commit comments

Comments
 (0)