diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index 96bdbfefddf18..173cf2fa64613 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -21,13 +21,13 @@ jobs: - name: Checkout source tree uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip - pip install tox==4.27.0 + pip install tox==4.30.2 - name: Generate docs run: tox -c py/tox.ini env: @@ -41,13 +41,13 @@ jobs: - name: Checkout source tree uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip - pip install tox==4.27.0 + pip install tox==4.30.2 - name: Run type checking run: | tox -c py/tox.ini || true diff --git a/.github/workflows/update-documentation.yml b/.github/workflows/update-documentation.yml index 5297f41ebfc0f..d9d1ff83f197f 100644 --- a/.github/workflows/update-documentation.yml +++ b/.github/workflows/update-documentation.yml @@ -68,7 +68,7 @@ jobs: distribution: 'temurin' - name: Set up Python 3.9 if: ${{ inputs.language == 'py' || inputs.language == 'all' }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: 3.9 - name: Install dependencies