This is an automated email from the ASF dual-hosted git repository. aw pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/yetus-homebrew.git
The following commit(s) were added to refs/heads/main by this push: new f15b154 YETUS-1249. fix macos tests in yetus-homebrew (#9) f15b154 is described below commit f15b1547bae24ea710bd2ba761589cb5d814e083 Author: Allen Wittenauer <a...@apache.org> AuthorDate: Fri Dec 6 08:31:32 2024 -0800 YETUS-1249. fix macos tests in yetus-homebrew (#9) --- .github/workflows/testing.yaml | 2 +- Formula/yetus.rb | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index eba415a..15c0245 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -12,7 +12,7 @@ on: [push] # yamllint disable-line rule:truthy jobs: testing-macos: - runs-on: macos-11 + runs-on: macos-latest steps: # This step is necessary because one of our dependencies # conflicts with the Github image . diff --git a/Formula/yetus.rb b/Formula/yetus.rb index 34cfd1e..433fa22 100644 --- a/Formula/yetus.rb +++ b/Formula/yetus.rb @@ -28,7 +28,7 @@ class Yetus < Formula dependencies = [ # programming languages "go", - "openjdk@8", + "openjdk", "scala", # build tools @@ -37,6 +37,7 @@ class Yetus < Formula "automake", "bash", "cmake", + "diffutils", "libtool", "git", "gradle",