Skip to content

Commit 55cc53f

Browse files
Bump the all-dependencies group with 5 updates (#784)
1 parent 57ed3de commit 55cc53f

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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/

.github/workflows/tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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"
@@ -59,7 +59,7 @@ jobs:
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"

.github/workflows/windows.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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
@@ -56,7 +56,7 @@ jobs:
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

@@ -73,7 +73,7 @@ jobs:
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
@@ -91,7 +91,7 @@ jobs:
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/*.*

0 commit comments

Comments
 (0)