Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/actions/setup-ubuntu/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ runs:
- name: Install dependencies
# Shell must explicitly specify the shell for each step. https://github.com/orgs/community/discussions/18597
shell: bash
run: sudo apt install -y make direnv unzip lz4 wget curl npm jq pv coreutils libudev-dev
run: |
sudo apt-get update
sudo apt-get install -y make direnv unzip lz4 wget curl npm jq pv coreutils libudev-dev
- name: Setup npm
uses: actions/setup-node@v4
with:
Expand Down
Loading