From 08ea6949835e7b5b8f1e29e474d18cebb740705f Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Fri, 25 Sep 2026 20:58:02 -0700 Subject: [PATCH] Use official Homebrew action --- .github/actions/setup/action.yaml | 2 +- bdwgc-alloc-sys/build.rs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index 4d8d77d..2d84370 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -6,6 +6,6 @@ runs: using: composite steps: - uses: swatinem/rust-cache@6323deb102c322ba6fcbdcafc7e3dddab59af2b6 # v2.9.2 - - uses: raviqqe/enable-homebrew@6bd383659a321c332bd0c0ed445c32d54e04efe8 # v1.0.5 + - uses: homebrew/actions/setup-homebrew@e99025eb970cfa124b8284a35463d87426917478 # main - run: brew install autoconf automake libtool shell: sh diff --git a/bdwgc-alloc-sys/build.rs b/bdwgc-alloc-sys/build.rs index ca177f5..365d512 100644 --- a/bdwgc-alloc-sys/build.rs +++ b/bdwgc-alloc-sys/build.rs @@ -3,6 +3,8 @@ use core::error::Error; use std::{env, path::PathBuf}; +// cspell: ignore reconf + const LIB_ATOMIC_OPS_DIR: &str = "vendor/libatomic_ops"; const LIB_GC_DIR: &str = "vendor/bdwgc";