Skip to content

Commit 54a0271

Browse files
authored
Merge pull request #201 from HackSoftware/dependencies
Bring dependencies up to date
2 parents 344313d + 9578734 commit 54a0271

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/django.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
docker_build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v2
7+
- uses: actions/checkout@v3
88
- name: Build docker
99
run: docker-compose build
1010
- name: Type check
@@ -28,9 +28,9 @@ jobs:
2828
# needed because the postgres container does not provide a healthcheck
2929
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- name: Fetch history, because Heroku deploy fails otherwise.
33-
uses: actions/setup-python@v2
33+
uses: actions/setup-python@v4
3434
with:
3535
python-version: 3.10.2
3636
- name: Install dependencies
@@ -51,7 +51,7 @@ jobs:
5151
needs: build
5252
if: github.ref == 'refs/heads/master'
5353
steps:
54-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v3
5555
with:
5656
fetch-depth: "0"
5757
- name: Deploy to Heroku

requirements/base.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
Django==3.2.14
2-
django-environ==0.8.1
1+
Django==4.0.6
2+
django-environ==0.9.0
33
psycopg2==2.9.3
44
djangorestframework==3.13.1
55

66
celery==5.2.6
77
django-celery-results==2.3.1
8-
django-celery-beat==2.2.1
8+
django-celery-beat==2.3.0
99

1010
whitenoise==6.1.0
1111

12-
django-filter==21.1
12+
django-filter==22.1
1313
django-extensions==3.1.5
1414
django-cors-headers==3.12.0
1515
django-storages==1.12.3
1616

1717
drf-jwt==1.19.2
1818

19-
boto3==1.23.0
19+
boto3==1.24.27
2020
attrs==21.4.0

requirements/local.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ pytest==7.1.2
44
pytest-django==4.5.2
55

66
factory-boy==3.2.1
7-
Faker==13.11.1
7+
Faker==13.15.0
88

99
flake8==4.0.1
1010

1111
ipdb==0.13.9
1212
ipython==8.3.0
1313

14-
mypy==0.942
15-
django-stubs==1.10.1
16-
djangorestframework-stubs==1.5.0
17-
boto3-stubs==1.23.0
14+
mypy==0.961
15+
django-stubs==1.12.0
16+
djangorestframework-stubs==1.7.0
17+
boto3-stubs==1.24.27

requirements/production.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-r base.txt
22

33
gunicorn==20.1.0
4-
sentry-sdk==1.5.12
4+
sentry-sdk==1.7.0

0 commit comments

Comments
 (0)