diff --git a/.github/workflows/capture_new_migrations.yml b/.github/workflows/capture_new_migrations.yml index f0f092e6a410..41d0b4a329fb 100644 --- a/.github/workflows/capture_new_migrations.yml +++ b/.github/workflows/capture_new_migrations.yml @@ -110,7 +110,7 @@ jobs: - name: list installed package versions run: | - sudo pip freeze + pip freeze - name: Run Tests env: @@ -123,7 +123,6 @@ jobs: echo "Running the CMS migrations." ./manage.py cms showmigrations - - name: Checkout branch repo uses: actions/checkout@v2 @@ -137,7 +136,7 @@ jobs: - name: list installed package versions run: | - sudo pip freeze + pip freeze - name: Run Tests env: LMS_CFG: lms/envs/minimal.yml @@ -149,7 +148,6 @@ jobs: echo "Running the CMS migrations." ./manage.py cms showmigrations - # This job aggregates test results. It's the required check for branch protection. # https://github.com/marketplace/actions/alls-green#why # https://github.com/orgs/community/discussions/33579