From 466b885fc5d1b6047e2822402a052627e2ff5809 Mon Sep 17 00:00:00 2001 From: Michael Froh Date: Tue, 31 Jan 2023 01:39:19 +0000 Subject: [PATCH] Add macos-latest to workflow actions This is a test commit to verify whether existing workflow actions can run on macos-latest. See https://github.com/opensearch-project/opensearch-build/issues/38 for more details. Signed-off-by: Michael Froh --- .github/workflows/plugin_install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/plugin_install.yml b/.github/workflows/plugin_install.yml index 75289d560a..3833a78fce 100644 --- a/.github/workflows/plugin_install.yml +++ b/.github/workflows/plugin_install.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-latest, macos-latest] jdk: [11, 17] runs-on: ${{ matrix.os }}