Skip to content

Commit 91c0428

Browse files
authoredSep 12, 2023
Update actions/checkout action to v4 (#654)
1 parent a72b7aa commit 91c0428

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 

‎.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Initialize CodeQL
2424
uses: github/codeql-action/init@v2

‎.github/workflows/lint.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
lint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: psf/black@stable
1414
- uses: chartboost/ruff-action@v1

‎.github/workflows/tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
mysql --version
3636
mysql -uroot -proot -e "CREATE DATABASE mysqldb_test"
3737
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: Set up Python ${{ matrix.python-version }}
4141
uses: actions/setup-python@v4
@@ -78,7 +78,7 @@ 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@v3
81+
- uses: actions/checkout@v4
8282

8383
- name: Set up Python
8484
uses: actions/setup-python@v4

‎.github/workflows/windows.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
cmake -DCMAKE_INSTALL_PREFIX=c:/mariadb-connector -DCMAKE_INSTALL_COMPONENT=Development -DCMAKE_BUILD_TYPE=Release -P cmake_install.cmake
4141
4242
- name: Checkout mysqlclient
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
with:
4545
path: mysqlclient
4646

0 commit comments

Comments
 (0)
Please sign in to comment.