From b5b24a48c9aab7f74c188c0202a119c1a1f8b624 Mon Sep 17 00:00:00 2001 From: Brian Beggs Date: Tue, 11 Jul 2023 11:43:07 -0400 Subject: [PATCH] chore: Fix make upgrade github action. --- .github/workflows/upgrade-python-requirements.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/upgrade-python-requirements.yml b/.github/workflows/upgrade-python-requirements.yml index ca47f2ea40..8805ac696e 100644 --- a/.github/workflows/upgrade-python-requirements.yml +++ b/.github/workflows/upgrade-python-requirements.yml @@ -10,15 +10,20 @@ on: required: true default: 'master' jobs: - call-upgrade-python-requirements-workflow: + call-upgrade-python-requirements-workflow: + runs-on: ubuntu-latest + steps: + - name: install pip-tools + run: python -m pip install pip-tools + uses: openedx/.github/.github/workflows/upgrade-python-requirements.yml@master with: branch: ${{ github.event.inputs.branch }} team_reviewers: "business-enterprise-team" - email_address: enterprise-integrations@edx.org + email_address: enterprise-integrations@edx.org send_success_notification: false secrets: requirements_bot_github_token: ${{ secrets.REQUIREMENTS_BOT_GITHUB_TOKEN }} requirements_bot_github_email: ${{ secrets.REQUIREMENTS_BOT_GITHUB_EMAIL }} edx_smtp_username: ${{ secrets.EDX_SMTP_USERNAME }} edx_smtp_password: ${{ secrets.EDX_SMTP_PASSWORD }} - uses: openedx/.github/.github/workflows/upgrade-python-requirements.yml@master +