diff --git a/.github/workflows/dev-build.yml b/.github/workflows/dev-build.yml index fab57205..3bf2cabe 100644 --- a/.github/workflows/dev-build.yml +++ b/.github/workflows/dev-build.yml @@ -1,28 +1,28 @@ -# name: Build and Push to Development +name: Build and Push to Development -# on: -# push: -# branches: -# - dev +on: + push: + branches: + - dev -# jobs: -# build: -# name: Build and Push to GCR -# runs-on: ubuntu-latest -# env: -# IMAGE_NAME: gcr.io/dev-buildly/transparent-path/buildly-core -# steps: -# - uses: actions/checkout@v2 +jobs: + build: + name: Build and Push to GCR + runs-on: ubuntu-latest + env: + IMAGE_NAME: gcr.io/dev-buildly/transparent-path/buildly-core + steps: + - uses: actions/checkout@v2 -# - name: Docker login -# uses: docker/login-action@v1 -# with: -# registry: gcr.io -# username: _json_key -# password: ${{ secrets.DEV_GCR_JSON_KEY }} + - name: Docker login + uses: docker/login-action@v1 + with: + registry: gcr.io + username: _json_key + password: ${{ secrets.DEV_GCR_JSON_KEY }} -# - name: Build docker image -# run: docker build -t $IMAGE_NAME:latest . + - name: Build docker image + run: docker build -t $IMAGE_NAME:latest . -# - name: Push to Google Container Registry -# run: docker push $IMAGE_NAME:latest + - name: Push to Google Container Registry + run: docker push $IMAGE_NAME:latest diff --git a/requirements/base.txt b/requirements/base.txt index 7de01526..bc815500 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,9 +1,9 @@ -Django==2.2.10 -django-filter==2.2.0 +Django==3.2.24 +django-filter==2.4.0 jsonschema==3.2.0 django-health-check==3.6.1 git+https://github.com/buildlyio/django-oauth-toolkit-jwt@v0.5.2#egg=django-oauth-toolkit-jwt -djangorestframework==3.9.4 +djangorestframework==3.11.2 psycopg2-binary==2.8.6 social-auth-app-django==3.1.0 django-oauth-toolkit==1.3.0 @@ -12,6 +12,6 @@ django-cors-headers==2.5.3 pyswagger==0.8.39 bravado-core==5.13.1 drf-yasg==1.10.2 -requests==2.25.0 -aiohttp==3.5.4 -django-auth-ldap==2.1.0 \ No newline at end of file +requests==2.31.0 +aiohttp==3.8.6 +django-auth-ldap==2.1.0 diff --git a/requirements/test.txt b/requirements/test.txt index 157ab6bd..e983fa34 100644 --- a/requirements/test.txt +++ b/requirements/test.txt @@ -1,5 +1,5 @@ -r ci.txt factory_boy==2.12.0 -ipython==7.2.0 +ipython==8.10.0 ipdb==0.12.2