Skip to content

Commit c30739a

Browse files
authored
Merge branch 'master' into ciup
2 parents 79f3805 + 3c56b21 commit c30739a

File tree

3 files changed

+42
-3
lines changed

3 files changed

+42
-3
lines changed

.github/workflows/codeql.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
analyze:
11+
name: Analyze
12+
runs-on: ubuntu-latest
13+
permissions:
14+
actions: read
15+
contents: read
16+
security-events: write
17+
18+
strategy:
19+
fail-fast: false
20+
matrix:
21+
language: [ python ]
22+
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v3
26+
27+
- name: Initialize CodeQL
28+
uses: github/codeql-action/init@v2
29+
with:
30+
languages: ${{ matrix.language }}
31+
queries: +security-and-quality
32+
33+
- name: Autobuild
34+
uses: github/codeql-action/autobuild@v2
35+
36+
- name: Perform CodeQL Analysis
37+
uses: github/codeql-action/analyze@v2
38+
with:
39+
category: "/language:${{ matrix.language }}"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Looking for sponsor for working on django 1.11 to 2.2 support https://github.com/celery/django-celery/issues/568
1+
Looking for sponsor for working on django 1.11 to 5.2 support https://github.com/celery/django-celery/issues/568
22

3-
THIS Project is only for celery v3.x only!
3+
THIS Project is only for celery v3.x to v4.x only for now!
44

55
===============================================
66
django-celery - Celery Integration for Django

requirements/default.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
celery>=3.1.15,<4.5
1+
celery>=3.1.15,<4.5

0 commit comments

Comments
 (0)