Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version in README from v2 to v3 #85

Merged
merged 1 commit into from
Sep 18, 2024
Merged
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
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Set up your GitHub Actions workflow with a specific version of [uv](https://docs

```yaml
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
version: "latest"
```
Expand All @@ -45,7 +45,7 @@ For an example workflow, see

```yaml
- name: Install a specific version of uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
version: "0.4.4"
```
Expand All @@ -57,14 +57,14 @@ to install the latest version that satisfies the range.

```yaml
- name: Install a semver range of uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
version: ">=0.3.0"
```

```yaml
- name: Pinning a minor version of uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
version: "0.3.x"
```
Expand All @@ -77,7 +77,7 @@ are automatically verified by this action. The sha265 hashes can be found on the

```yaml
- name: Install a specific version and validate the checksum
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
version: "0.3.1"
checksum: "e11b01402ab645392c7ad6044db63d37e4fd1e745e015306993b07695ea5f9f8"
Expand All @@ -98,7 +98,7 @@ You can optionally define a custom cache key suffix.
```yaml
- name: Enable caching and define a custom cache key suffix
id: setup-uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-suffix: "optional-suffix"
Expand All @@ -125,15 +125,15 @@ changes. The glob matches files relative to the repository root.

```yaml
- name: Define a cache dependency glob
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "**/requirements*.txt"
```

```yaml
- name: Define a list of cache dependency globs
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: |
Expand All @@ -143,7 +143,7 @@ changes. The glob matches files relative to the repository root.

```yaml
- name: Never invalidate the cache
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: ""
Expand All @@ -156,7 +156,7 @@ default (`/tmp/setup-uv-cache`) by specifying the path with the `cache-local-pat

```yaml
- name: Define a custom uv cache path
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
cache-local-path: "/path/to/cache"
```
Expand All @@ -173,7 +173,7 @@ are not sufficient, you can provide a custom GitHub token with the necessary per

```yaml
- name: Install the latest version of uv with a custom GitHub token
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
github-token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
```
Expand Down Expand Up @@ -202,7 +202,7 @@ For example:
- name: Checkout the repository
uses: actions/checkout@main
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Test
Expand All @@ -214,7 +214,7 @@ To install a specific version of Python, use

```yaml
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install Python 3.12
Expand All @@ -233,7 +233,7 @@ output:
uses: actions/checkout@main
- name: Install the default version of uv
id: setup-uv
uses: astral-sh/setup-uv@v2
uses: astral-sh/setup-uv@v3
- name: Print the installed version
run: echo "Installed uv version is ${{ steps.setup-uv.outputs.uv-version }}"
```
Expand Down
Loading