From 7d37b79015d497c0d192aa07fb3053881cf889d8 Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Fri, 12 Aug 2022 12:13:11 -0400 Subject: [github] Use macos-12 It might be beneficial to set up a matrix ([docs](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-multi-dimension-matrix)) and run all major supported macOS versions in parallel. Reason: macos-10.15 is [being deprecated](https://github.com/actions/runner-images/issues/5583) and will be fully unsupported by Aug 30 2022. --- .github/workflows/debug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/debug.yml') diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index e8e912d..fd9bf9d 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -10,7 +10,7 @@ on: - debug jobs: debug: - runs-on: macos-10.15 + runs-on: macos-12 steps: - uses: actions/checkout@v2 - uses: cachix/install-nix-action@v15 -- cgit v1.2.3 From 0ed84cbf72c2bb9b40c96c9758242a31abb71e9b Mon Sep 17 00:00:00 2001 From: Marin Usalj Date: Fri, 12 Aug 2022 14:25:48 -0400 Subject: Update install-nix-action and nix to 22.05 Might need to update nix further if it keeps erroring. --- .github/workflows/debug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/debug.yml') diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index fd9bf9d..6c4311e 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -13,7 +13,7 @@ jobs: runs-on: macos-12 steps: - uses: actions/checkout@v2 - - uses: cachix/install-nix-action@v15 + - uses: cachix/install-nix-action@v17 - run: | nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs nix-channel --update -- cgit v1.2.3