diff --git a/.github/workflows/auth.yml b/.github/workflows/auth.yml index 41132354717..b5afbce79cf 100644 --- a/.github/workflows/auth.yml +++ b/.github/workflows/auth.yml @@ -6,6 +6,7 @@ on: - 'FirebaseAuth**' - 'FirebaseAuth/Interop/*.h' - '.github/workflows/auth.yml' + - 'scripts/gha-encrypted/AuthSample/SwiftApplication.plist.gpg' - 'Gemfile*' schedule: # Run every day at 1am (PST) - cron uses UTC times diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ccb719df2f2..eb913e8f805 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -132,7 +132,7 @@ To develop Firebase software, **install**: To install [clang-format] and [mint] using [Homebrew]: ```console - brew install clang-format@16 + brew install clang-format@17 brew install mint ``` diff --git a/README.md b/README.md index 85a23bdc148..77f843b235c 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ GitHub Actions will verify that any code changes are done in a style compliant way. Install `clang-format` and `mint`: ```console -brew install clang-format@16 +brew install clang-format@17 brew install mint ``` diff --git a/scripts/gha-encrypted/AuthSample/SwiftApplication.plist.gpg b/scripts/gha-encrypted/AuthSample/SwiftApplication.plist.gpg index b735654ab87..5f84381c616 100644 Binary files a/scripts/gha-encrypted/AuthSample/SwiftApplication.plist.gpg and b/scripts/gha-encrypted/AuthSample/SwiftApplication.plist.gpg differ diff --git a/scripts/setup_check.sh b/scripts/setup_check.sh index 88c138a1063..9e62317b8df 100755 --- a/scripts/setup_check.sh +++ b/scripts/setup_check.sh @@ -35,7 +35,7 @@ fi # install clang-format brew update -brew install clang-format@16 +brew install clang-format@17 # mint installs tools from Mintfile on demand. brew install mint diff --git a/scripts/style.sh b/scripts/style.sh index a350f7c79ec..c08dd1ed1f9 100755 --- a/scripts/style.sh +++ b/scripts/style.sh @@ -56,7 +56,7 @@ version="${version/ (*)/}" version="${version/.*/}" case "$version" in - 16) + 17) ;; google3-trunk) echo "Please use a publicly released clang-format; a recent LLVM release" @@ -65,7 +65,7 @@ case "$version" in exit 1 ;; *) - echo "Please upgrade to clang-format version 16." + echo "Please upgrade to clang-format version 17." echo "If it's installed via homebrew you can run:" echo "brew upgrade clang-format" exit 1