summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-09-17 20:49:45 -0700
committerTim Smith <tsmith84@gmail.com>2021-11-30 12:48:29 -0800
commitb3fbe6e7f3bf84abd7282433dd6bbb6b406805f1 (patch)
tree725472ad74f538f592115f93e79180c897b2d211
parent8b267e2117bc8c4bad9667274a2665210a25adcd (diff)
downloadchef-b3fbe6e7f3bf84abd7282433dd6bbb6b406805f1.tar.gz
Add macOS 11 to the GitHub Actions tests
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.github/workflows/kitchen.yml2
-rw-r--r--.github/workflows/unit_specs.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/kitchen.yml b/.github/workflows/kitchen.yml
index fe7afc493f..04e581406b 100644
--- a/.github/workflows/kitchen.yml
+++ b/.github/workflows/kitchen.yml
@@ -57,7 +57,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [macos-10.15] # macos-11.0 is not public for now
+ os: [macos-10.15, macos-11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
diff --git a/.github/workflows/unit_specs.yml b/.github/workflows/unit_specs.yml
index fd0be0991f..9af53dd6f5 100644
--- a/.github/workflows/unit_specs.yml
+++ b/.github/workflows/unit_specs.yml
@@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- os: [macos-10.15] # macos-11.0 is not public for now
+ os: [macos-10.15, macos-11]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: ['3.0']
runs-on: ${{ matrix.os }}