From 551bd87b98b0c67e542f5f78036bef6d191f60de Mon Sep 17 00:00:00 2001 From: Victor Irzak Date: Fri, 17 May 2024 11:52:56 +0000 Subject: [PATCH] Grant exec permissions to curl --- .github/workflows/node.js.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 202d9cd8..bcb6cf92 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -35,6 +35,7 @@ jobs: - name: "Test in a minimal container" run: | wget -O /tmp/curl https://github.com/moparisthebest/static-curl/releases/download/v8.5.0/curl-amd64 + chmod a+rwx /tmp/curl podman run --rm -v /tmp/curl:/usr/bin/curl alpine sh -c "curl -sS https://webi.sh/pwsh@7.4.1 | sh" - env: GITHUB_TOKEN: ${{ github.token }}