Skip to content

Commit cb80a66

Browse files
authored
Merge pull request #61 from pulumi/jaxxstorm/virtualenv-fixes
pinning virtualenv version
2 parents 5abd7e6 + 58db6d2 commit cb80a66

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

.github/workflows/master.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,10 @@ jobs:
306306
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
307307
- name: Update path
308308
run: echo ::add-path::${{ github.workspace }}/bin
309-
- name: Install pipenv
310-
uses: dschep/install-pipenv-action@v1
309+
- name: Install Python deps
310+
run: |-
311+
pip3 install virtualenv==20.0.23
312+
pip3 install pipenv
311313
- name: Install dependencies
312314
run: make -f Makefile.github install_${{ matrix.language}}_sdk
313315
- name: Run docker-compose
@@ -343,6 +345,8 @@ name: master
343345
push:
344346
branches:
345347
- master
348+
paths-ignore:
349+
- CHANGELOG.md
346350
tags-ignore:
347351
- v*
348352
- sdk/*

.github/workflows/prerelease.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,10 @@ jobs:
336336
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
337337
- name: Update path
338338
run: echo ::add-path::${{ github.workspace }}/bin
339-
- name: Install pipenv
340-
uses: dschep/install-pipenv-action@v1
339+
- name: Install Python deps
340+
run: |-
341+
pip3 install virtualenv==20.0.23
342+
pip3 install pipenv
341343
- name: Install dependencies
342344
run: make -f Makefile.github install_${{ matrix.language}}_sdk
343345
- name: Run docker-compose

.github/workflows/pull-request.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,10 @@ jobs:
245245
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
246246
- name: Update path
247247
run: echo ::add-path::${{ github.workspace }}/bin
248-
- name: Install pipenv
249-
uses: dschep/install-pipenv-action@v1
248+
- name: Install Python deps
249+
run: |-
250+
pip3 install virtualenv==20.0.23
251+
pip3 install pipenv
250252
- name: Install dependencies
251253
run: make -f Makefile.github install_${{ matrix.language}}_sdk
252254
- name: Run docker-compose

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,10 @@ jobs:
356356
path: ${{ github.workspace}}/sdk/${{ matrix.language }}
357357
- name: Update path
358358
run: echo ::add-path::${{ github.workspace }}/bin
359-
- name: Install pipenv
360-
uses: dschep/install-pipenv-action@v1
359+
- name: Install Python deps
360+
run: |-
361+
pip3 install virtualenv==20.0.23
362+
pip3 install pipenv
361363
- name: Install dependencies
362364
run: make -f Makefile.github install_${{ matrix.language}}_sdk
363365
- name: Run docker-compose

0 commit comments

Comments
 (0)