chore(deps): update dependency boto3-stubs to v1.37.4 #29676
This file contains 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
# Copyright © Michal Čihař <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Documentation | |
on: | |
push: | |
branches-ignore: | |
- renovate/** | |
- weblate | |
pull_request: | |
schedule: | |
- cron: 30 5 * * * | |
permissions: | |
contents: read | |
jobs: | |
list-languages: | |
runs-on: ubuntu-24.04 | |
outputs: | |
languages: ${{ steps.list.outputs.languages }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: astral-sh/setup-uv@1edb52594c857e2b5b13128931090f0640537287 # v5.3.0 | |
- name: Set up Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: '3.13' | |
- run: uv run --no-project scripts/list-documentation-languages.py >>"$GITHUB_OUTPUT" | |
id: list | |
translations: | |
runs-on: ubuntu-24.04 | |
needs: | |
- list-languages | |
name: Sphinx | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ${{ fromJson(needs.list-languages.outputs.languages) }} | |
env: | |
READTHEDOCS_LANGUAGE: ${{ matrix.language }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: astral-sh/setup-uv@1edb52594c857e2b5b13128931090f0640537287 # v5.3.0 | |
- name: Set up Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: '3.13' | |
- name: Install apt dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y graphviz | |
- name: Install Python dependencies | |
run: uv sync --no-sources --only-group docs --frozen | |
- name: Sphinx build | |
run: | | |
. .venv/bin/activate | |
echo "::add-matcher::.github/matchers/sphinx.json" | |
./ci/run-docs | |
echo "::remove-matcher owner=sphinx::" | |
- uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1 | |
with: | |
name: Documentation ${{ matrix.language }} | |
path: docs/_build/html | |
build: | |
runs-on: ubuntu-24.04 | |
name: Sphinx | |
needs: | |
- translations | |
steps: | |
# This is dependency only job to collect all test results | |
- run: echo |