Skip to content

Commit f3bdadc

Browse files
authored
Merge branch 'main' into chore/split_button
2 parents 348f73d + 9844b4c commit f3bdadc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v3
45+
uses: github/codeql-action/init@v4
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v3
59+
uses: github/codeql-action/autobuild@v4
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,6 +69,6 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v3
72+
uses: github/codeql-action/analyze@v4
7373
with:
7474
category: "/language:${{matrix.language}}"

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ repos:
1515
args: ["--py39-plus"]
1616

1717
- repo: https://github.com/adamchainz/django-upgrade
18-
rev: "1.27.0"
18+
rev: "1.29.0"
1919
hooks:
2020
- id: django-upgrade
2121
args: [--target-version, "4.2"]
@@ -33,6 +33,6 @@ repos:
3333
- flake8-logging-format
3434

3535
- repo: https://github.com/tox-dev/pyproject-fmt
36-
rev: v2.6.0
36+
rev: v2.7.0
3737
hooks:
3838
- id: pyproject-fmt

docs/source/reference.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -545,8 +545,8 @@ You can run tests by executing:
545545

546546
.. code::
547547
548-
virtualenv env
548+
python -m venv env
549549
source env/bin/activate
550-
pip install -r tests/requirements.txt
551-
python ./run_tests.py
550+
pip install -r tests/requirements/base.txt
551+
pytest
552552

0 commit comments

Comments
 (0)