Skip to content

Commit 53625a7

Browse files
authored
print curl and hurl versions
1 parent 8d2ed34 commit 53625a7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

+8
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,18 @@ jobs:
181181
with:
182182
go-version: ${{ matrix.GO_SEMVER }}
183183
check-latest: true
184+
185+
- name: Upgrade Packages
186+
shell: bash
187+
run: |
188+
sudo apt update
189+
sudo apt install -y curl # to upgrade curl
184190
185191
- name: Print Go version and environment
186192
id: vars
187193
shell: bash
188194
run: |
195+
printf "curl version: $(curl --version)\n"
189196
printf "Using go at: $(which go)\n"
190197
printf "Go version: $(go version)\n"
191198
printf "\n\nGo environment:\n\n"
@@ -213,6 +220,7 @@ jobs:
213220
run: |
214221
curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/${HURL_VERSION}/hurl_${HURL_VERSION}_amd64.deb
215222
sudo dpkg -i hurl_${HURL_VERSION}_amd64.deb
223+
hurl --version
216224
217225
- name: Run Caddy
218226
run: |

0 commit comments

Comments
 (0)