File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 2929 env :
3030 CRITICALUP_VERSION : ${{ inputs.criticalup }}
3131 run : |
32- curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ferrocene/criticalup/releases/download/${CRITICALUP_VERSION}/criticalup-installer.sh | sh
32+ curl -fsSL https://github.com/ferrocene/criticalup/releases/download/${CRITICALUP_VERSION}/criticalup-installer.sh | sh
3333 - name : Install Just 1.42
3434 uses : extractions/setup-just@v3
3535 with :
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ set -euo pipefail
1111
1212# We only support macOS (the x86 binaries work OK on Apple Silicon), or x86-64 Linux
1313if [ $( uname) == " Darwin" ]; then
14- ./mdbook --version || curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-apple-darwin.tar.gz | tar -xvzf -
15- ./mdbook-mermaid --version || curl -sSL https://github.com/badboy/mdbook-mermaid/releases/download/v0.13.0/mdbook-mermaid-v0.13.0-x86_64-apple-darwin.tar.gz | tar -xvzf -
14+ ./mdbook --version || curl -fsSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-apple-darwin.tar.gz | tar -xvzf -
15+ ./mdbook-mermaid --version || curl -fsSL https://github.com/badboy/mdbook-mermaid/releases/download/v0.13.0/mdbook-mermaid-v0.13.0-x86_64-apple-darwin.tar.gz | tar -xvzf -
1616else
17- ./mdbook --version || curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz | tar -xvzf -
18- ./mdbook-mermaid --version || curl -sSL https://github.com/badboy/mdbook-mermaid/releases/download/v0.13.0/mdbook-mermaid-v0.13.0-x86_64-unknown-linux-gnu.tar.gz | tar -xvzf -
17+ ./mdbook --version || curl -fsSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz | tar -xvzf -
18+ ./mdbook-mermaid --version || curl -fsSL https://github.com/badboy/mdbook-mermaid/releases/download/v0.13.0/mdbook-mermaid-v0.13.0-x86_64-unknown-linux-gnu.tar.gz | tar -xvzf -
1919fi
2020
2121# Must be an absolute path, otherwise mdbook puts the output in the wrong place
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ cargo install cyme
119119Install ` probe-rs ` 0.29.1 pre-compiled binaries on Linux with:
120120
121121``` bash
122- curl --proto ' = https' --tlsv1.2 -LsSf https ://github.com/probe-rs/probe-rs/releases/download/v0.29.1 /probe-rs-tools-installer.sh | sh
122+ curl -fsSL https://github.com/probe-rs/probe-rs/releases/download/v0.30.0 /probe-rs-tools-installer.sh | sh
123123```
124124
125125---
@@ -195,7 +195,7 @@ cargo install cyme
195195Install ` probe-rs ` 0.29.1 pre-compiled binaries on Windows with:
196196
197197``` bash
198- powershell -c " irm https://github.com/probe-rs/probe-rs/releases/download/v0.29.1 /probe-rs-tools-installer.ps1 | iex"
198+ powershell -c " irm https://github.com/probe-rs/probe-rs/releases/download/v0.30.0 /probe-rs-tools-installer.ps1 | iex"
199199```
200200
201201---
@@ -244,7 +244,7 @@ cargo install cyme
244244Install ` probe-rs ` 0.29.1 pre-compiled binaries on macOS with:
245245
246246``` bash
247- curl --proto ' = https' --tlsv1.2 -LsSf https ://github.com/probe-rs/probe-rs/releases/download/v0.29.1 /probe-rs-tools-installer.sh | sh
247+ curl -fsSL https://github.com/probe-rs/probe-rs/releases/download/v0.30.0 /probe-rs-tools-installer.sh | sh
248248```
249249
250250---
You can’t perform that action at this time.
0 commit comments