chore(deps): update opentelemetry-api requirement from <=1.41.1,>=1.39.0 to >=1.39.0,<=1.44.0 #95
Workflow file for this run
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: Release Check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - "pyproject.toml" | |
| - "MANIFEST.in" | |
| - "Makefile" | |
| - "ksadk/**" | |
| - "ksadk_runtime_common/**" | |
| - "scripts/open_source_audit.py" | |
| - "scripts/verify_ksadk_web_static.py" | |
| - ".github/workflows/release-check.yml" | |
| jobs: | |
| artifacts: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| - name: Sync pinned KsADK Web static assets | |
| env: | |
| KSADK_WEB_VERSION: "0.3.0" | |
| run: make public-sync-ksadk-web-static | |
| - name: Build artifacts | |
| run: uv build | |
| - name: Check package metadata | |
| run: uv run --extra dev python -m twine check dist/* | |
| - name: Audit wheel and sdist file lists | |
| run: make open-source-audit-dist |