From 29cbb7c98225bd73fb0c15e64d8136d393001012 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Mon, 6 Jan 2020 16:52:45 +0100 Subject: [PATCH] checkout curl with actions/checkout@v2 --- .github/workflows/pythonapp.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index b69f517..4386848 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -29,8 +29,10 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Checkout curl for the tests - uses: curl/curl@curl-7_67_0 + uses: actions/checkout@v2 with: + repository: curl/curl + ref: curl-7_67_0 path: test_repos/curl - name: Test with pytest