diff --git a/.github/workflows/hamlet_deploy.yml b/.github/workflows/hamlet_deploy.yml index 7c43844..d3091b6 100644 --- a/.github/workflows/hamlet_deploy.yml +++ b/.github/workflows/hamlet_deploy.yml @@ -19,13 +19,13 @@ jobs: python_version: [3.8.10] steps: - name: Git clone on our repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Create zip deployment package run: zip -r ${{ env.DEPLOY_PACKAGE_NAME }} ./ -x *.git* - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.aws_access_key_id }} aws-secret-access-key: ${{ secrets.aws_secret_access_key }} @@ -39,7 +39,7 @@ jobs: needs: [build] steps: - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.aws_access_key_id }} aws-secret-access-key: ${{ secrets.aws_secret_access_key }} diff --git a/Pipfile b/Pipfile index 1a8379b..dca8645 100644 --- a/Pipfile +++ b/Pipfile @@ -8,27 +8,27 @@ requests = "*" refextract = {git = "https://github.com/MITLibraries/refextract.git"} [packages] -django = {version = "~=2.2.28"} -gunicorn = "*" -gevent = "*" +boto = "==2.48.0" +chardet = "*" coverage = "*" -nltk = "*" -tika = "*" -whitenoise = "*" dj-database-url = "*" +django = "~=2.2.28" +django-autocomplete-light = "~=3.3.0" django-compressor = "*" +django-health-check = "*" django-libsass = "*" -django-autocomplete-light = "~=3.3.0" -python-magic = "*" django-simple-captcha = "*" +gensim = "~=3.5.0" +gevent = "*" +gunicorn = "*" +nltk = "*" +tika = "*" pillow = "*" +psycopg2 = "==2.8.6" python-docx = "*" -chardet = "*" -django-health-check = "*" +python-magic = "*" raven = "*" -boto = "==2.48.0" -gensim = "~=3.5.0" -psycopg2 = "==2.8.6" +whitenoise = "*" [requires] python_version = "3.8"