Skip to content

Commit

Permalink
fix: usage of node12 which is deprecated (#11224)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamirmahal authored Oct 5, 2024
1 parent e968b3d commit e2a4da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/supply-chain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Rust
run: rustup update stable && rustup default stable

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: ${{ runner.tool_cache }}/cargo-vet
key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}
Expand Down

1 comment on commit e2a4da0

@hamirmahal
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bench (nightly, x86_64-unknown-linux-gnu, ubuntu-latest) fails with

   Compiling tempfile v3.13.0
   Compiling serde_derive v1.0.210
   Compiling tauri_bench v0.1.0 (/home/runner/work/tauri/tauri/bench)
    Finished `dev` profile [unoptimized] target(s) in 7.42s
     Running `target/debug/run_benchmark`
Downloading https://github.com/lemarier/tauri-test/releases/download/v2.0.0/json_3mb.json
Starting tauri benchmark
Benchmark 1: /home/runner/work/tauri/tauri/bench/../target/x86_64-unknown-linux-gnu/release/bench_helloworld

(bench_helloworld:9973): Gtk-WARNING **: 16:27:35.049: cannot open display: :99
Error: Command terminated with non-zero exit code: 1. Use the '-i'/'--ignore-failure' option if you want to ignore this. Alternatively, use the '--show-output' option to debug what went wrong.
thread 'main' panicked at bench/src/utils.rs:207:5:
Unexpected exit code: Some(1)
stack backtrace:
   0: rust_begin_unwind
   1: core::panicking::panic_fmt
   2: run_benchmark::utils::run
   3: run_benchmark::run_exec_time
   4: run_benchmark::main
   5: core::ops::function::FnOnce::call_once
note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
Error: Process completed with exit code 101.

Please sign in to comment.