chore(deps): update dependency https://github.com/lkubb/salt-extensio… #2
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: Build Documentation | ||
| on: | ||
| workflow_call: | ||
| jobs: | ||
| Docs: | ||
| runs-on: ubuntu-24.04 | ||
| timeout-minutes: 10 | ||
| steps: | ||
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Set up Python 3.10 For Nox | ||
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 | ||
| with: | ||
| python-version: "3.10" | ||
| - name: Install Nox | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install "nox==$NOX_VERSION" "uv==$UV_VERSION" | ||
| env: | ||
| NOX_VERSION: '2025.2.9' | ||
| <<<<<<< before updating | ||
| UV_VERSION: '0.6.9' | ||
| ======= | ||
| UV_VERSION: '0.6.15' | ||
| >>>>>>> after updating | ||
| - name: Install Doc Requirements | ||
| run: | | ||
| nox --force-color -e docs --install-only | ||
| - name: Build Docs | ||
| env: | ||
| SKIP_REQUIREMENTS_INSTALL: true | ||
| run: | | ||
| nox --force-color -e docs | ||
| - name: Upload built docs as artifact | ||
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | ||
| with: | ||
| name: html-docs | ||
| path: docs/_build/html | ||
| - name: Set Exit Status | ||
| if: always() | ||
| run: | | ||
| mkdir exitstatus | ||
| echo "${{ job.status }}" > exitstatus/${{ github.job }} | ||
| - name: Upload Exit Status | ||
| if: always() | ||
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | ||
| with: | ||
| name: exitstatus-${{ github.job }} | ||
| path: exitstatus | ||
| if-no-files-found: error | ||