From 177be58ba4eddec604e26811b85ac43f9590a4f2 Mon Sep 17 00:00:00 2001 From: Paul Stack Date: Tue, 23 Jun 2020 17:50:48 +0100 Subject: [PATCH] Fixing up the Python builds (#1014) --- .github/workflows/master.yml | 6 ++++-- .github/workflows/prerelease.yml | 6 ++++-- .github/workflows/pull-request.yml | 6 ++++-- .github/workflows/release.yml | 6 ++++-- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 614cdac1e20..4bca157f962 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -240,8 +240,10 @@ jobs: path: ${{ github.workspace}}/sdk/${{ matrix.language }} - name: Update path run: echo ::add-path::${{ github.workspace }}/bin - - name: Install pipenv - uses: dschep/install-pipenv-action@v1 + - name: Install Python deps + run: |- + pip3 install virtualenv==20.0.23 + pip3 install pipenv - name: Install dependencies run: make -f Makefile.github install_${{ matrix.language}}_sdk - name: Configure AWS Credentials diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index a25206e2f4d..3480bfb9088 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -270,8 +270,10 @@ jobs: path: ${{ github.workspace}}/sdk/${{ matrix.language }} - name: Update path run: echo ::add-path::${{ github.workspace }}/bin - - name: Install pipenv - uses: dschep/install-pipenv-action@v1 + - name: Install Python deps + run: |- + pip3 install virtualenv==20.0.23 + pip3 install pipenv - name: Install dependencies run: make -f Makefile.github install_${{ matrix.language}}_sdk - name: Configure AWS Credentials diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index bfd6b59001f..e5a6c8e158f 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -179,8 +179,10 @@ jobs: path: ${{ github.workspace}}/sdk/${{ matrix.language }} - name: Update path run: echo ::add-path::${{ github.workspace }}/bin - - name: Install pipenv - uses: dschep/install-pipenv-action@v1 + - name: Install Python deps + run: |- + pip3 install virtualenv==20.0.23 + pip3 install pipenv - name: Install dependencies run: make -f Makefile.github install_${{ matrix.language}}_sdk - name: Configure AWS Credentials diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 114947ef29f..6e3aa6e6034 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -290,8 +290,10 @@ jobs: path: ${{ github.workspace}}/sdk/${{ matrix.language }} - name: Update path run: echo ::add-path::${{ github.workspace }}/bin - - name: Install pipenv - uses: dschep/install-pipenv-action@v1 + - name: Install Python deps + run: |- + pip3 install virtualenv==20.0.23 + pip3 install pipenv - name: Install dependencies run: make -f Makefile.github install_${{ matrix.language}}_sdk - name: Configure AWS Credentials