You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,18 +91,18 @@ ASH v3 integrates multiple open-source security tools as scanners. Tools like Ba
91
91
curl -sSfL https://astral.sh/uv/install.sh | sh
92
92
93
93
# Create an alias for ASH
94
-
alias ash="uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.4"
94
+
alias ash="uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.5"
95
95
```
96
96
97
97
```powershell
98
98
# Install uv on Windows with PowerShell if it isn't installed already
99
99
irm https://astral.sh/uv/install.ps1 | iex
100
100
101
101
# Create a function for ASH
102
-
function ash { uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.4 $args }
102
+
function ash { uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.5 $args }
103
103
```
104
104
105
-
> **Floating tag `v3`**: We also maintain a `v3` floating tag that always points to the latest stable v3.x release. You can use `@v3` instead of `@v3.2.4` to stay up to date automatically. Pin a specific version (e.g., `@v3.2.4`) when you need reproducible builds.
105
+
> **Floating tag `v3`**: We also maintain a `v3` floating tag that always points to the latest stable v3.x release. You can use `@v3` instead of `@v3.2.5` to stay up to date automatically. Pin a specific version (e.g., `@v3.2.5`) when you need reproducible builds.
> **Tip**: The examples below use pinned versions (`@v3.2.4`) for reproducibility. You can also use the `v3` floating tag (`@v3`) to always get the latest stable v3.x release, though pinned versions are recommended for CI/CD.
219
+
> **Tip**: The examples below use pinned versions (`@v3.2.5`) for reproducibility. You can also use the `v3` floating tag (`@v3`) to always get the latest stable v3.x release, though pinned versions are recommended for CI/CD.
Copy file name to clipboardExpand all lines: docs/content/docs/installation-guide.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ ASH v3 uses UV's tool isolation system to automatically manage most scanner depe
33
33
curl -sSf https://astral.sh/uv/install.sh | sh
34
34
35
35
# Create an alias for ASH
36
-
alias ash="uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.4"
36
+
alias ash="uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.5"
37
37
38
38
# Use as normal
39
39
ash --help
@@ -45,22 +45,22 @@ ash --help
45
45
irm https://astral.sh/uv/install.ps1 | iex
46
46
47
47
# Create a function for ASH
48
-
function ash { uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.4 $args }
48
+
function ash { uvx git+https://github.com/awslabs/automated-security-helper.git@v3.2.5 $args }
49
49
50
50
# Use as normal
51
51
ash --help
52
52
```
53
53
54
54
!!! tip "Floating tag `v3`"
55
-
We also maintain a `v3` floating tag that always points to the latest stable v3.x release. You can use `@v3` instead of a specific version to stay up to date automatically. Pin a specific version (e.g., `@v3.2.4`) when you need reproducible builds, such as in CI/CD pipelines.
55
+
We also maintain a `v3` floating tag that always points to the latest stable v3.x release. You can use `@v3` instead of a specific version to stay up to date automatically. Pin a specific version (e.g., `@v3.2.5`) when you need reproducible builds, such as in CI/CD pipelines.
56
56
57
57
#### 2. Using `pipx`
58
58
59
59
[`pipx`](https://pypa.github.io/pipx/) installs packages in isolated environments and makes their entry points available globally.
> **Tip**: You can also use the `v3` floating tag (`@v3`) instead of a specific version to always get the latest stable v3.x release. Pin a specific version for CI/CD or reproducible environments.
0 commit comments