From ea32af34e6a0efef59bdf9acaa1c38d5d32bef0d Mon Sep 17 00:00:00 2001 From: Ali Karbassi Date: Thu, 2 Dec 2021 15:49:42 -0600 Subject: [PATCH] Updated GitHub Actions Environments (#372) Rather than `*-latest`, I'm specifying specific environments. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eeea980..27fbeb5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: test: strategy: matrix: - platform: [ubuntu-latest, macos-latest, ubuntu-18.04] + platform: [ubuntu-20.04, ubuntu-18.04, macos-11, macos-10.15] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v2