From 818b62f679b9dc6abfe0c6fa2372420739cda032 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?m=C2=B2?= Date: Mon, 12 Aug 2019 17:17:27 +0200 Subject: [PATCH] Fix arguments for actions/checkout --- ci/go.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/go.yml b/ci/go.yml index 6bf4a15..00c53eb 100644 --- a/ci/go.yml +++ b/ci/go.yml @@ -15,7 +15,8 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@master - path: ${{ go.module-path }} + with: + path: ${{ go.module-path }} - name: Get dependencies working-directory: ${{ go.module-path }}