Merge pull request #724 from lightpanda-io/apt_update

run apt-get update before trying to install
This commit is contained in:
Karl Seguin
2025-05-29 13:57:02 +08:00
committed by GitHub

View File

@@ -34,7 +34,9 @@ runs:
- name: Install apt deps - name: Install apt deps
if: ${{ inputs.os == 'linux' }} if: ${{ inputs.os == 'linux' }}
shell: bash shell: bash
run: sudo apt-get install -y wget xz-utils python3 ca-certificates git pkg-config libglib2.0-dev gperf libexpat1-dev cmake clang run: |
sudo apt-get update
sudo apt-get install -y wget xz-utils python3 ca-certificates git pkg-config libglib2.0-dev gperf libexpat1-dev cmake clang
- uses: mlugg/setup-zig@v2 - uses: mlugg/setup-zig@v2
with: with: