Skip to content

Commit 0662252

Browse files
authored
Merge branch 'main' into emilk/less-debug-formatting
2 parents 54cfeab + 0c82ade commit 0662252

File tree

277 files changed

+15567
-2498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

277 files changed

+15567
-2498
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444
- name: Install cargo-audit
45-
uses: taiki-e/install-action@03ef6f57d573ca4522fb02950f326083373b85bf # v2.66.2
45+
uses: taiki-e/install-action@542cebaaed782771e619bd5609d97659d109c492 # v2.66.7
4646
with:
4747
tool: cargo-audit
4848
- name: Run audit check

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ jobs:
6666
- name: Install cargo-machete
6767
run: cargo install cargo-machete --version ^0.9 --locked
6868
- name: Detect unused dependencies
69-
run: cargo machete --with-metadata
69+
run: cargo machete --with-metadata

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
47-
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
47+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
4848
with:
4949
node-version: "20"
5050
- name: Prettier check

.github/workflows/docs.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
path: asf-site
4242

4343
- name: Setup Python
44-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
44+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
4545
with:
4646
python-version: "3.12"
4747

@@ -51,6 +51,12 @@ jobs:
5151
python3 -m venv venv
5252
source venv/bin/activate
5353
pip install -r docs/requirements.txt
54+
- name: Install dependency graph tooling
55+
run: |
56+
set -x
57+
sudo apt-get update
58+
sudo apt-get install -y graphviz
59+
cargo install cargo-depgraph --version ^1.6 --locked
5460
5561
- name: Build docs
5662
run: |

.github/workflows/docs_pr.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
submodules: true
4646
fetch-depth: 1
4747
- name: Setup Python
48-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
48+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
4949
with:
5050
python-version: "3.12"
5151
- name: Install doc dependencies
@@ -54,10 +54,15 @@ jobs:
5454
python3 -m venv venv
5555
source venv/bin/activate
5656
pip install -r docs/requirements.txt
57+
- name: Install dependency graph tooling
58+
run: |
59+
set -x
60+
sudo apt-get update
61+
sudo apt-get install -y graphviz
62+
cargo install cargo-depgraph --version ^1.6 --locked
5763
- name: Build docs html and check for warnings
5864
run: |
5965
set -x
6066
source venv/bin/activate
6167
cd docs
6268
./build.sh # fails on errors
63-

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ jobs:
421421
sudo apt-get update -qq
422422
sudo apt-get install -y -qq clang
423423
- name: Setup wasm-pack
424-
uses: taiki-e/install-action@03ef6f57d573ca4522fb02950f326083373b85bf # v2.66.2
424+
uses: taiki-e/install-action@542cebaaed782771e619bd5609d97659d109c492 # v2.66.7
425425
with:
426426
tool: wasm-pack
427427
- name: Run tests with headless mode
@@ -695,7 +695,7 @@ jobs:
695695
uses: ./.github/actions/setup-builder
696696
with:
697697
rust-version: stable
698-
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
698+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
699699
with:
700700
node-version: "20"
701701
- name: Check if configs.md has been modified
@@ -741,7 +741,7 @@ jobs:
741741
- name: Setup Rust toolchain
742742
uses: ./.github/actions/setup-builder
743743
- name: Install cargo-msrv
744-
uses: taiki-e/install-action@03ef6f57d573ca4522fb02950f326083373b85bf # v2.66.2
744+
uses: taiki-e/install-action@542cebaaed782771e619bd5609d97659d109c492 # v2.66.7
745745
with:
746746
tool: cargo-msrv
747747

0 commit comments

Comments
 (0)