Skip to content

Commit a300373

Browse files
Bump actions/checkout from 4 to 5 (#930)
* Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * pypy-3.11 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <[email protected]>
1 parent 432dd70 commit a300373

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: blacksmith-4vcpu-ubuntu-2204
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Set up Python
2121
uses: useblacksmith/setup-python@v6

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix: # https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django
1515
django-version: ["3.2", "4.2", "5.1", "5.2"]
16-
python-version: ['3.8','3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.10']
16+
python-version: ['3.8','3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.11']
1717
exclude:
1818
- django-version: "3.2"
1919
python-version: "3.11"
@@ -39,7 +39,7 @@ jobs:
3939
- "5672:5672"
4040

4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- name: Set up Python ${{ matrix.python-version }}
4444
uses: useblacksmith/setup-python@v6
4545
with:
@@ -50,15 +50,15 @@ jobs:
5050
python -m pip install tox tox-gh-actions
5151
- name: Test with tox
5252
run: |
53-
if [ "${{ matrix.python-version }}" != "pypy-3.10" ]; then
53+
if [ "${{ matrix.python-version }}" != "pypy-3.11" ]; then
5454
tox -- --cov=django_celery_beat --cov-report=xml --no-cov-on-fail --cov-report term
5555
else
5656
tox
5757
fi
5858
env:
5959
DJANGO: ${{ matrix.django-version }}
6060
- name: Upload coverage reports to Codecov
61-
if: ${{ matrix.python-version != 'pypy-3.10' }}
61+
if: ${{ matrix.python-version != 'pypy-3.11' }}
6262
uses: codecov/codecov-action@v5
6363
with:
6464
fail_ci_if_error: true # optional (default = false)

0 commit comments

Comments
 (0)