From 250b4e9da5b36703b0edc22522334d19d6c2310d Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Thu, 7 Mar 2024 10:29:01 +0100 Subject: [PATCH 1/3] ci: Update rust cache in github action --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27197dfdfb..d298347f7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,9 +67,9 @@ jobs: run: cargo clippy --all-features --examples -- -D warnings - name: Use caching - uses: Swatinem/rust-cache@v2.5.0 + uses: Swatinem/rust-cache@v2 with: - workspaces: ${{ matrix.package }} -> target + workspaces: ${{ matrix.package }} - name: "Build" run: cargo build ${{ matrix.release && '--release' }} From aa90fe90d75262cdf1e14ef44818f1089846b791 Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Thu, 7 Mar 2024 11:04:44 +0100 Subject: [PATCH 2/3] ci: do not skip draft PRs --- .github/workflows/ci.yml | 1 - .github/workflows/rustdoc.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d298347f7a..fe55aae813 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,6 @@ env: jobs: build_and_test: name: Build and test - if: ( ! github.event.pull_request.draft ) runs-on: ubuntu-latest strategy: fail-fast: false diff --git a/.github/workflows/rustdoc.yml b/.github/workflows/rustdoc.yml index 11fd84c022..e474235f44 100644 --- a/.github/workflows/rustdoc.yml +++ b/.github/workflows/rustdoc.yml @@ -12,7 +12,6 @@ env: jobs: rustdoc: - if: ( ! github.event.pull_request.draft ) runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 6d3354d3e465ec18c338e0d482cfc2e6b2b7870c Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Fri, 8 Mar 2024 11:56:42 +0100 Subject: [PATCH 3/3] doc: fixed typo --- tlsn/examples/interactive/interactive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlsn/examples/interactive/interactive.rs b/tlsn/examples/interactive/interactive.rs index 9ecaffa3a3..f335cad562 100644 --- a/tlsn/examples/interactive/interactive.rs +++ b/tlsn/examples/interactive/interactive.rs @@ -127,7 +127,7 @@ async fn verifier( // Verify MPC-TLS and wait for (redacted) data. let (sent, received, session_info) = verifier.verify(socket.compat()).await.unwrap(); - // Check send data: check host. + // Check sent data: check host. let sent_data = String::from_utf8(sent.data().to_vec()).expect("Verifier expected sent data"); sent_data .find(SERVER_DOMAIN)