From 785ffb2e26784d33775b6887d9bdf90e5b3682fd Mon Sep 17 00:00:00 2001 From: "VL.Y" <1560781+vladimiry@users.noreply.github.com> Date: Thu, 13 Jul 2023 06:08:43 +0300 Subject: [PATCH] github actions: bump dropped macos-10.5 to macos-11 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1103d9..53b6d40 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,7 +3,7 @@ on: { push: { branches: [ master ] }, pull_request: { branches: [ master ] } } jobs: lib: if: github.event_name == 'push' - strategy: { matrix: { os: [ ubuntu-20.04, windows-2019, macos-10.15 ], node: [ 12, 14, 16 ] }, fail-fast: false } + strategy: { matrix: { os: [ ubuntu-20.04, windows-2019, macos-11 ], node: [ 12, 14, 16 ] }, fail-fast: false } runs-on: ${{ matrix.os }} steps: - { uses: actions/setup-node@v1, with: { node-version: "${{ matrix.node }}" } }