From 66d58eba40b625ce2532f3467b9511ca3cbd1785 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 20 Oct 2020 06:34:18 -0700 Subject: [PATCH] CI: add note about `marcopolo/cargo` The GitHub Actions recipe is using a fork of `actions-rs/cargo` which includes this PR to support a `working-directory` attribute: https://github.com/actions-rs/cargo/pull/59 Ideally `actions-rs/cargo` will eventually merge this PR. --- .github/workflows/md5.yml | 2 ++ .github/workflows/sha1.yml | 2 ++ .github/workflows/sha2.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/md5.yml b/.github/workflows/md5.yml index 3f2befd..991c6bf 100644 --- a/.github/workflows/md5.yml +++ b/.github/workflows/md5.yml @@ -47,6 +47,8 @@ jobs: toolchain: ${{ matrix.toolchain }} target: ${{ matrix.target }} override: true + # NOTE: using `marcopolo/cargo` fork to support the `working-directory` attribute + # See: https://github.com/actions-rs/cargo/pull/59 - uses: marcopolo/cargo@master with: command: test diff --git a/.github/workflows/sha1.yml b/.github/workflows/sha1.yml index ef3d58a..6639223 100644 --- a/.github/workflows/sha1.yml +++ b/.github/workflows/sha1.yml @@ -63,6 +63,8 @@ jobs: toolchain: ${{ matrix.rust }} target: ${{ matrix.target }} override: true + # NOTE: using `marcopolo/cargo` fork to support the `working-directory` attribute + # See: https://github.com/actions-rs/cargo/pull/59 - uses: marcopolo/cargo@master with: command: test diff --git a/.github/workflows/sha2.yml b/.github/workflows/sha2.yml index 881d483..c46d1e1 100644 --- a/.github/workflows/sha2.yml +++ b/.github/workflows/sha2.yml @@ -67,6 +67,8 @@ jobs: toolchain: ${{ matrix.rust }} target: ${{ matrix.target }} override: true + # NOTE: using `marcopolo/cargo` fork to support the `working-directory` attribute + # See: https://github.com/actions-rs/cargo/pull/59 - uses: marcopolo/cargo@master with: command: test