Skip to content

Commit

Permalink
[CI] Add sudo apt-get update in workflows/ubuntu.yml (#3498)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarod42 authored Oct 13, 2024
1 parent f5d266b commit 9ac9c40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
steps:
# WxWidgets
- name: install dependencies for wxWidgets
run: sudo apt-get install build-essential cmake git libedit-dev libgtk-3-dev libhunspell-dev libsqlite3-dev libssh-dev pkg-config xterm
run: |
sudo apt-get update
sudo apt-get install build-essential cmake git libedit-dev libgtk-3-dev libhunspell-dev libsqlite3-dev libssh-dev pkg-config xterm
- name: Checkout WxWidgets
uses: actions/checkout@v4
Expand Down

0 comments on commit 9ac9c40

Please sign in to comment.