Skip to content

Commit bddb3f0

Browse files
authored
Merge pull request #724 from lightpanda-io/apt_update
run apt-get update before trying to install
2 parents 73d6329 + 83da818 commit bddb3f0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/install/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ runs:
3434
- name: Install apt deps
3535
if: ${{ inputs.os == 'linux' }}
3636
shell: bash
37-
run: sudo apt-get install -y wget xz-utils python3 ca-certificates git pkg-config libglib2.0-dev gperf libexpat1-dev cmake clang
37+
run: |
38+
sudo apt-get update
39+
sudo apt-get install -y wget xz-utils python3 ca-certificates git pkg-config libglib2.0-dev gperf libexpat1-dev cmake clang
3840
3941
- uses: mlugg/setup-zig@v2
4042
with:

0 commit comments

Comments
 (0)