Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v5.0.0
with:
token: ${{ secrets.ACCESS_TOKEN }}
ref: development

- name: Set up Python
uses: actions/setup-python@v5.6.0
uses: actions/setup-python@v6.0.0
with:
python-version: '3.10'
cache: pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Export secrets to environment variables
uses: oNaiPs/secrets-to-env-action@v1.5
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
run: sudo deploy_scripts/make_zip_django.sh $DEPLOY_ZIP_DIR $DEPLOY_ZIP_NAME

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4.2.1
uses: aws-actions/configure-aws-credentials@v5.1.0
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v5.0.0

- name: Set up Python and cache pip
uses: actions/setup-python@v5.6.0
uses: actions/setup-python@v6.0.0
with:
python-version: '3.10'
cache: 'pip'
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 6.1.0
hooks:
- id: isort
- repo: https://github.com/jazzband/pip-tools
rev: v7.5.0
rev: v7.5.1
hooks:
- id: pip-compile
args:
Expand Down
14 changes: 7 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
asgiref==3.9.2
asgiref==3.10.0
# via django
asterism==1.1.0
# via -r requirements.in
bagit==1.9.0
# via asterism
certifi==2025.7.14
certifi==2025.10.5
# via
# elasticsearch
# requests
charset-normalizer==3.4.2
charset-normalizer==3.4.3
# via requests
django==4.2.23
django==4.2.25
# via
# -r requirements.in
# asterism
Expand All @@ -21,7 +21,7 @@ django-common-helpers==0.9.2
# via django4-cron
django4-cron==0.5.1
# via -r requirements.in
djangorestframework==3.16.0
djangorestframework==3.16.1
# via
# -r requirements.in
# asterism
Expand All @@ -46,7 +46,7 @@ python-dateutil==2.9.0.post0
# via elasticsearch-dsl
rac-es==1.1.0
# via -r requirements.in
requests==2.32.4
requests==2.32.5
# via
# -r requirements.in
# electronbonder
Expand All @@ -58,7 +58,7 @@ six==1.17.0
# python-dateutil
sqlparse==0.5.3
# via django
typing-extensions==4.14.1
typing-extensions==4.15.0
# via asgiref
urllib3==1.26.20
# via
Expand Down
Loading