From 35e4a9a477152124f8c5a1eb3982705514c60fd1 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Fri, 16 Jun 2023 11:02:23 -0700 Subject: [PATCH 1/2] chore(ci): Run on macos-13 to avoid nix failure --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6fc1436017a..a9251881873 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,8 @@ jobs: runner: ubuntu-large target: x86_64-linux - os: mac - runner: macos-latest + # The nix action doesn't fail on macos-13 according to https://github.com/cachix/install-nix-action/issues/183 + runner: macos-13 target: x86_64-darwin steps: From fd8309c94e6461db88fce4b7f96d52fc1056dddd Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Fri, 16 Jun 2023 11:02:45 -0700 Subject: [PATCH 2/2] chore: Resolve workflows to github-workflow schema validation --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 78bfd88c35e..6c6ec87be51 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,4 +13,7 @@ } } }, + "yaml.schemas": { + "https://json.schemastore.org/github-workflow.json": "${workspaceRoot}/.github/workflows/*.yml" + }, }