From 9adbf886794e643c2abbc9e55be31e0dca999720 Mon Sep 17 00:00:00 2001 From: Markus Stange Date: Sun, 31 Aug 2025 16:47:40 -0400 Subject: [PATCH 1/2] Bump actions/checkout and actions/download-artifact. --- .github/workflows/nix-packaging.yml | 2 +- .github/workflows/rust.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nix-packaging.yml b/.github/workflows/nix-packaging.yml index a43fd6fa..64056cd7 100644 --- a/.github/workflows/nix-packaging.yml +++ b/.github/workflows/nix-packaging.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: cachix/install-nix-action@v31 with: nix_path: nixpkgs=channel:nixos-23.11 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5f6f2ac4..835fdb7a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - run: rustup update stable - name: Check formatting run: cargo fmt --all --check --verbose @@ -48,7 +48,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install sccache uses: mozilla-actions/sccache-action@v0.0.9 @@ -98,7 +98,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install sccache uses: mozilla-actions/sccache-action@v0.0.9 @@ -143,7 +143,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install sccache uses: mozilla-actions/sccache-action@v0.0.9 From 31d954731406113ed19593fd24eb8029d1079221 Mon Sep 17 00:00:00 2001 From: Markus Stange Date: Sun, 31 Aug 2025 16:58:54 -0400 Subject: [PATCH 2/2] Bump mach2. --- Cargo.lock | 4 ++-- samply/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59566fd5..b61013bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1372,9 +1372,9 @@ checksum = "7b29dffab797218e12e4df08ef5d15ab9efca2504038b1b32b9b32fc844b39c9" [[package]] name = "mach2" -version = "0.4.3" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" +checksum = "6a1b95cd5421ec55b445b5ae102f5ea0e768de1f82bd3001e11f426c269c3aea" dependencies = [ "libc", ] diff --git a/samply/Cargo.toml b/samply/Cargo.toml index 7cd4c2e3..dad80a51 100644 --- a/samply/Cargo.toml +++ b/samply/Cargo.toml @@ -60,7 +60,7 @@ crossbeam-channel = "0.5.15" [target.'cfg(target_os = "macos")'.dependencies] -mach2 = "0.4.2" +mach2 = "0.5" lazy_static = "1.5.0" flate2 = "1.0" sysctl = "0.6.0"