diff --git a/.github/workflows/monorepo_tests.yaml b/.github/workflows/monorepo_tests.yaml index 2658be8f..1314b219 100644 --- a/.github/workflows/monorepo_tests.yaml +++ b/.github/workflows/monorepo_tests.yaml @@ -11,14 +11,14 @@ jobs: check-changes: runs-on: ubuntu-latest outputs: - matrix: ${{ steps.set-matrix.outputs.affected }} + services: ${{ steps.services-changed.outputs.affected }} steps: - uses: actions/checkout@v3 - id: install-typer run: pip install typer>=0.9.0 - - id: set-matrix + - id: services-changed run: | echo "affected=$(python3 ./scripts/affected_services.py)" >> $GITHUB_OUTPUT @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - service: ${{ fromJson(needs.check-changes.outputs.matrix) }} + service: ${{ fromJson(needs.check-changes.outputs.services) }} steps: - uses: actions/checkout@v3 with: @@ -35,7 +35,7 @@ jobs: .github .lock .services/${{matrix.service}} - fetch-depth: 2 + fetch-depth: 0 - name: update pip run: python -m pip install --upgrade pip