Skip to content

Commit

Permalink
Merge pull request RockefellerArchiveCenter#203 from RockefellerArchi…
Browse files Browse the repository at this point in the history
…veCenter/development

Implementing GH actions PR flow, Remove dependabot
  • Loading branch information
HaSistrunk authored Jul 21, 2022
2 parents 3370d57 + f3b671c commit 3898c05
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 29 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: update dependencies
on:

schedule:
- cron: '0 0 1 * *'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: development

- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: pip
- run: |
pip install pip-tools
pip-compile --upgrade
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: development
branch: dependency-updates
delete-branch: true
title: Dependency Updates
commit-message: Dependency updates
7 changes: 0 additions & 7 deletions dependabot.yml

This file was deleted.

28 changes: 14 additions & 14 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Django==4.0.5
django-cors-headers==3.12.0
django-elasticsearch-dsl==7.2.2
django-elasticsearch-dsl-drf==0.22.4
djangorestframework==3.13.1
elasticsearch==7.17.0
elasticsearch-dsl==7.4.0
jsonschema==4.4.0
psycopg2-binary==2.9.3
PyYAML==6.0
rac-schemas==0.30
rac_es==0.18
shortuuid==1.0.9
uritemplate==4.1.1
Django~=4.0
django-cors-headers~=3.13
django-elasticsearch-dsl~=7.2
django-elasticsearch-dsl-drf~=0.22
djangorestframework~=3.13
elasticsearch~=7.17
elasticsearch-dsl~=7.4
jsonschema~=4.7
psycopg2-binary~=2.9
PyYAML~=6.0
rac-schemas~=0.30
rac_es~=1.0
shortuuid~=1.0
uritemplate~=4.1
16 changes: 8 additions & 8 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ asgiref==3.5.2
# via django
attrs==21.4.0
# via jsonschema
certifi==2022.5.18.1
certifi==2022.6.15
# via elasticsearch
django==4.0.5
django==4.0.6
# via
# -r requirements.in
# django-cors-headers
# django-nine
# djangorestframework
django-cors-headers==3.12.0
django-cors-headers==3.13.0
# via -r requirements.in
django-elasticsearch-dsl==7.2.2
# via
# -r requirements.in
# django-elasticsearch-dsl-drf
django-elasticsearch-dsl-drf==0.22.4
django-elasticsearch-dsl-drf==0.22.5
# via -r requirements.in
django-nine==0.2.5
# via django-elasticsearch-dsl-drf
djangorestframework==3.13.1
# via
# -r requirements.in
# django-elasticsearch-dsl-drf
elasticsearch==7.17.0
elasticsearch==7.17.4
# via
# -r requirements.in
# django-elasticsearch-dsl-drf
Expand All @@ -42,7 +42,7 @@ elasticsearch-dsl==7.4.0
# django-elasticsearch-dsl
# django-elasticsearch-dsl-drf
# rac-es
jsonschema==4.4.0
jsonschema==4.7.2
# via
# -r requirements.in
# rac-schemas
Expand All @@ -56,7 +56,7 @@ pytz==2022.1
# via djangorestframework
pyyaml==6.0
# via -r requirements.in
rac-es==0.18
rac-es==1.0.0
# via -r requirements.in
rac-schemas==0.30
# via -r requirements.in
Expand All @@ -72,5 +72,5 @@ sqlparse==0.4.2
# via django
uritemplate==4.1.1
# via -r requirements.in
urllib3==1.26.9
urllib3==1.26.10
# via elasticsearch

0 comments on commit 3898c05

Please sign in to comment.