Skip to content

Commit 1cb5c2b

Browse files
committed
.github/workflows: install missing packages in sandboxed step
1 parent af68b7f commit 1cb5c2b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
steps:
2424
- name: Install hurl 4.1.0
2525
run: |
26-
curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/4.1.0/hurl_4.1.0_amd64.deb
27-
sudo apt-get update && sudo apt-get install ./hurl_4.1.0_amd64.deb
2826
- uses: actions/checkout@v5
2927
with:
3028
persist-credentials: false
@@ -35,6 +33,9 @@ jobs:
3533
- uses: geomys/sandboxed-step@v1.1.1
3634
with:
3735
run: |
36+
sudo apt-get update && sudo apt-get install -y openssh-client curl build-essential
37+
curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/4.1.0/hurl_4.1.0_amd64.deb
38+
sudo apt-get install ./hurl_4.1.0_amd64.deb
3839
if [ "${{ matrix.deps }}" = "latest" ]; then
3940
go get -u && go mod tidy
4041
fi

0 commit comments

Comments
 (0)