From f8f760f7387d2cc56a2fc7b1be313a3bf3f7f58c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tina=20M=C3=BCller=20=28tinita=29?= Date: Wed, 10 Nov 2021 18:03:02 +0100 Subject: ci: Fix build on macOS (#230) add-path was deprecated, see https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8ec497..c591a81 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,8 +30,8 @@ jobs: if: ${{ matrix.os == 'macOS-latest' }} run: | brew install automake bash coreutils make - echo ::add-path::/usr/local/opt/coreutils/libexec/gnubin - echo ::add-path::/usr/local/opt/make/libexec/gnubin + echo "/usr/local/opt/coreutils/libexec/gnubin" >> $GITHUB_PATH + echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH - name: Fetch branches run: | git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/* -- cgit v1.2.1