forked from RockefellerArchiveCenter/argo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request RockefellerArchiveCenter#203 from RockefellerArchi…
…veCenter/development Implementing GH actions PR flow, Remove dependabot
- Loading branch information
Showing
4 changed files
with
55 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters