diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a5aceb2e4..4c6e1c36e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -243,8 +243,7 @@ jobs: - link-checker - node-tests - python-e2e-tests -# Temp disable linting from blocking -# - python-lint + - python-lint - style-check if: always() runs-on: ubuntu-latest diff --git a/.github/workflows/codecov-publish.yml b/.github/workflows/codecov-publish.yml index e6df13598..23c666b8e 100644 --- a/.github/workflows/codecov-publish.yml +++ b/.github/workflows/codecov-publish.yml @@ -20,6 +20,8 @@ jobs: - name: Download Workflow Info uses: actions/download-artifact@v4 with: + # Needed for cross run downloading + github-token: ${{ secrets.GITHUB_TOKEN }} name: workflow-info run-id: ${{ github.event.workflow_run.id }} - name: Set Environment Variables from JSON @@ -34,6 +36,8 @@ jobs: - name: Download Coverage Artifacts uses: actions/download-artifact@v4 with: + # Needed for cross run downloading + github-token: ${{ secrets.GITHUB_TOKEN }} path: ./coverage-reports pattern: coverage-reports-* run-id: ${{ github.event.workflow_run.id }}