Skip to content

Commit a87f029

Browse files
committed
Merge remote-tracking branch 'origin/feature/modernize-python-django-support' into feature/modernize-python-django-support
2 parents 5252aa0 + 649bd9f commit a87f029

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ jobs:
2727
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v3
30+
uses: github/codeql-action/init@v4
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v3
36+
uses: github/codeql-action/autobuild@v4
3737
if: ${{ matrix.language == 'javascript' || matrix.language == 'python' }}
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v3
40+
uses: github/codeql-action/analyze@v4
4141
with:
4242
category: "/language:${{ matrix.language }}"

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v5
1616
- name: Set up Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.11'
2020
cache: 'pip'
@@ -39,7 +39,7 @@ jobs:
3939
- name: Checkout
4040
uses: actions/checkout@v5
4141
- name: Set up Python
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: '3.11'
4545
cache: 'pip'

.github/workflows/publish-to-live-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v5
1919
- name: Set up Python 3.13
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: '3.13'
2323

.github/workflows/publish-to-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v5
2020
- name: Set up Python 3.13
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: '3.13'
2424

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v5
4646
- name: Set up Python ${{ matrix.python-version }}
47-
uses: actions/setup-python@v5
47+
uses: actions/setup-python@v6
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050
- name: Install uv
@@ -115,7 +115,7 @@ jobs:
115115
steps:
116116
- uses: actions/checkout@v5
117117
- name: Set up Python ${{ matrix.python-version }}
118-
uses: actions/setup-python@v5
118+
uses: actions/setup-python@v6
119119
with:
120120
python-version: ${{ matrix.python-version }}
121121
- name: Install uv
@@ -180,7 +180,7 @@ jobs:
180180
steps:
181181
- uses: actions/checkout@v5
182182
- name: Set up Python ${{ matrix.python-version }}
183-
uses: actions/setup-python@v5
183+
uses: actions/setup-python@v6
184184
with:
185185
python-version: ${{ matrix.python-version }}
186186
- name: Install uv
@@ -215,7 +215,7 @@ jobs:
215215
steps:
216216
- uses: actions/checkout@v5
217217
- name: Set up Python ${{ matrix.python-version }}
218-
uses: actions/setup-python@v5
218+
uses: actions/setup-python@v6
219219
with:
220220
python-version: ${{ matrix.python-version }}
221221
- name: Install uv
@@ -250,7 +250,7 @@ jobs:
250250
steps:
251251
- uses: actions/checkout@v5
252252
- name: Set up Python ${{ matrix.python-version }}
253-
uses: actions/setup-python@v5
253+
uses: actions/setup-python@v6
254254
with:
255255
python-version: ${{ matrix.python-version }}
256256
- name: Install uv

0 commit comments

Comments
 (0)