Sync action pins #10830
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: 馃┖ Debug | |
| "on": | |
| workflow_call: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/debug.yaml | |
| schedule: | |
| # Run monthly on the 1st at 12:00 UTC to spot silent regressions. | |
| - cron: "0 12 1 * *" | |
| permissions: {} | |
| concurrency: | |
| group: >- | |
| ${{ github.workflow }}-${{ | |
| github.event.pull_request.number | |
| || github.ref | |
| }} | |
| cancel-in-progress: >- | |
| ${{ !startsWith(github.event.head_commit.message, | |
| '[changelog] Release') }} | |
| jobs: | |
| metadata: | |
| name: 馃К Project metadata | |
| runs-on: ubuntu-slim | |
| outputs: | |
| build_targets: ${{ steps.extend-matrix.outputs.targets }} | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| - name: Run repomatic metadata | |
| id: metadata | |
| run: > | |
| uvx --no-progress --from . repomatic --verbosity DEBUG metadata | |
| --format github-json --output "$GITHUB_OUTPUT" | |
| build_targets | |
| - name: Extend matrix with ubuntu-slim | |
| id: extend-matrix | |
| env: | |
| METADATA: ${{ steps.metadata.outputs.metadata }} | |
| run: | | |
| targets=$(echo "${METADATA}" | jq -c '(.build_targets | fromjson) + [{"os":"ubuntu-slim"}]') | |
| echo "targets=$targets" >> "$GITHUB_OUTPUT" | |
| dump-context: | |
| name: 馃┖ ${{ matrix.os }} info dump | |
| needs: | |
| - metadata | |
| if: needs.metadata.outputs.build_targets | |
| strategy: | |
| # Info-gathering matrix: see docs/workflows.md "Matrix fail-fast strategy". | |
| fail-fast: false | |
| matrix: | |
| include: ${{ fromJSON(needs.metadata.outputs.build_targets) }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: crazy-max/ghaction-dump-context@4d9eeaf15dd59aa4346919ea84a84ccf514b4db8 # v3.1.0 | |
| - uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0 | |
| - run: uvx --no-progress 'extra-platforms==13.3.1' |