Fix github doc highlight lines (#15443)

<!--
Thank you for contributing to uv! To help us out with reviewing, please
consider the following:

- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->

## Summary

i noticed some of the line highlights are wrong in the docs

## Test Plan

visual verification
This commit is contained in:
KotlinIsland 2025-08-23 02:28:41 +10:00 committed by GitHub
parent a2d97ae9b1
commit f231d0f2a5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -15,7 +15,7 @@ PATH, (optionally) persists the cache, and more, with support for all uv-support
To install the latest version of uv:
```yaml title="example.yml" hl_lines="11-12"
```yaml title="example.yml" hl_lines="11 12"
name: Example
jobs:
@ -81,7 +81,7 @@ Set the
[`python-version-file`](https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#using-the-python-version-file-input)
option to use the pinned version for the project:
```yaml title="example.yml" hl_lines="14 15 16 17"
```yaml title="example.yml" hl_lines="14"
name: Example
jobs:
@ -104,7 +104,7 @@ jobs:
Or, specify the `pyproject.toml` file to ignore the pin and use the latest version compatible with
the project's `requires-python` constraint:
```yaml title="example.yml" hl_lines="17"
```yaml title="example.yml" hl_lines="14"
name: Example
jobs:
@ -175,7 +175,7 @@ jobs:
Once uv and Python are installed, the project can be installed with `uv sync` and commands can be
run in the environment with `uv run`:
```yaml title="example.yml" hl_lines="17-22"
```yaml title="example.yml" hl_lines="15 17-22"
name: Example
jobs: