From 3b811110fde9234c4cf2044e529912f08c276f9b Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sun, 9 Jun 2024 14:52:14 -0700 Subject: [PATCH 1/2] chore: changes from formatting on save --- .github/workflows/test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a00da6b0..171d5c50 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,5 @@ on: [push, pull_request] - name: Test jobs: @@ -23,7 +22,7 @@ jobs: command: test args: --manifest-path crates/dash_vm/Cargo.toml # no --all-features because jit - name: Benchmark VM - run: eval $(cargo test --release --benches -p dash_vm |& grep -o -P 'target/release/deps/full-[^\)]+') --bench --output-format bencher | tee output.txt + run: eval $(cargo test --release --benches -p dash_vm |& grep -o -P 'target/release/deps/full-[^\)]+') --bench --output-format bencher | tee output.txt - name: Store output if: github.ref == 'refs/heads/master' uses: benchmark-action/github-action-benchmark@v1.15.0 From 7090e05ac578b58f99782dca462cdcbb097722d1 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Sun, 9 Jun 2024 14:52:35 -0700 Subject: [PATCH 2/2] fix: usage of `node12` in `actions/checkout` --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 171d5c50..fd30d79d 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install uses: actions-rs/toolchain@v1