Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- uses: tox-dev/action-pre-commit-uv@v1
18 changes: 9 additions & 9 deletions .github/workflows/update-lint-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: styfle/[email protected]
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v6.0.0
- uses: actions/setup-python@v6
with:
python-version: 3
- name: Install dependencies
Expand All @@ -28,7 +28,7 @@ jobs:
pip install requests cogapp polib transifex-python sphinx-intl blurb six
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
working-directory: /usr/local/bin
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v5
with:
ref: ${{ matrix.version }}
fetch-depth: 0
Expand Down Expand Up @@ -74,11 +74,11 @@ jobs:
needs: ['update']
continue-on-error: true
steps:
- uses: actions/setup-python@v6.0.0
- uses: actions/setup-python@v6
with:
python-version: 3
- run: pip install sphinx-lint
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v5
with:
ref: ${{ matrix.version }}
- uses: rffontenelle/[email protected]
Expand All @@ -93,16 +93,16 @@ jobs:
format: [html, latex, epub]
needs: ['update']
steps:
- uses: actions/setup-python@v6.0.0
- uses: actions/setup-python@v6
with:
python-version: 3.12 # pin for Sphinx 3.4.3 in 3.10 branch (see #63)
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v5
with:
repository: python/cpython
ref: ${{ matrix.version }}
- run: make venv
working-directory: ./Doc
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v5
with:
ref: ${{ matrix.version }}
path: Doc/locales/pl/LC_MESSAGES
Expand Down Expand Up @@ -143,10 +143,10 @@ jobs:
needs: ['build']
continue-on-error: true
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: 3.x
- uses: astral-sh/setup-uv@v5
- uses: astral-sh/setup-uv@v7
- uses: actions/[email protected]
with:
name: build-${{ matrix.version }}-epub
Expand Down