From 53625a76c27d8ed4ef373da0f5e726313f1e172b Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Mon, 9 Sep 2024 11:22:28 +0000 Subject: [PATCH] print curl and hurl versions --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a694dcb524d8..bc1933b8f9f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -181,11 +181,18 @@ jobs: with: go-version: ${{ matrix.GO_SEMVER }} check-latest: true + + - name: Upgrade Packages + shell: bash + run: | + sudo apt update + sudo apt install -y curl # to upgrade curl - name: Print Go version and environment id: vars shell: bash run: | + printf "curl version: $(curl --version)\n" printf "Using go at: $(which go)\n" printf "Go version: $(go version)\n" printf "\n\nGo environment:\n\n" @@ -213,6 +220,7 @@ jobs: run: | curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/${HURL_VERSION}/hurl_${HURL_VERSION}_amd64.deb sudo dpkg -i hurl_${HURL_VERSION}_amd64.deb + hurl --version - name: Run Caddy run: |