diff --git a/.github/actions/setup-env/action.yml b/.github/actions/setup-env/action.yml index b27d0df44..ad8dfd48d 100644 --- a/.github/actions/setup-env/action.yml +++ b/.github/actions/setup-env/action.yml @@ -32,7 +32,9 @@ runs: run: | sudo apt-get update sudo apt-get -y install python3-pip python3-dev - pip install awscli --upgrade --user + python -m venv venv + source venv/bin/activate + pip install awscli --upgrade - name: Project dependencies setup, node version ${{ inputs.node-version }} shell: bash run: yarn install --frozen-lockfile