From 18c2c9d2b57fa2626bedbc871164a3db9dcf1616 Mon Sep 17 00:00:00 2001 From: Slava Semushin Date: Tue, 19 Mar 2024 11:56:22 +0700 Subject: [PATCH] chore: fix installation of hurl because of invalid file content Error was: dpkg-deb: error: 'hurl_4.2.0_amd64.deb' is not a Debian format archive Correction for 206d310a4be076a8d9917056d1ada16518bdf9fb commit. Part of #13 --- .github/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 1f3488a..ae06c45 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -32,7 +32,7 @@ jobs: - name: Install Hurl run: | DEB=hurl_4.2.0_amd64.deb - curl --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/4.2.0/$DEB + curl --location --no-progress-meter --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/4.2.0/$DEB sudo dpkg --install $DEB - name: Show tools versions