Skip to content

Commit 649bd9f

Browse files
authored
Merge branch 'master' into feature/modernize-python-django-support
2 parents 1fc04ac + 0012ee5 commit 649bd9f

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
@@ -109,7 +109,7 @@ jobs:
109109
steps:
110110
- uses: actions/checkout@v5
111111
- name: Set up Python ${{ matrix.python-version }}
112-
uses: actions/setup-python@v5
112+
uses: actions/setup-python@v6
113113
with:
114114
python-version: ${{ matrix.python-version }}
115115
- name: Install uv
@@ -174,7 +174,7 @@ jobs:
174174
steps:
175175
- uses: actions/checkout@v5
176176
- name: Set up Python ${{ matrix.python-version }}
177-
uses: actions/setup-python@v5
177+
uses: actions/setup-python@v6
178178
with:
179179
python-version: ${{ matrix.python-version }}
180180
- name: Install uv
@@ -209,7 +209,7 @@ jobs:
209209
steps:
210210
- uses: actions/checkout@v5
211211
- name: Set up Python ${{ matrix.python-version }}
212-
uses: actions/setup-python@v5
212+
uses: actions/setup-python@v6
213213
with:
214214
python-version: ${{ matrix.python-version }}
215215
- name: Install uv
@@ -244,7 +244,7 @@ jobs:
244244
steps:
245245
- uses: actions/checkout@v5
246246
- name: Set up Python ${{ matrix.python-version }}
247-
uses: actions/setup-python@v5
247+
uses: actions/setup-python@v6
248248
with:
249249
python-version: ${{ matrix.python-version }}
250250
- name: Install uv

0 commit comments

Comments
 (0)