File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 20
20
RUSTFLAGS : -D warnings
21
21
steps :
22
22
- name : Install dependencies
23
- run : sudo apt-get -y install libgtk-3-dev
23
+ run : |
24
+ sudo apt-get update
25
+ sudo apt-get -y install libgtk-3-dev
24
26
- name : Checkout
25
27
uses : actions/checkout@v3
26
28
- name : Setup Rust toolchain
58
60
steps :
59
61
- name : Install dependencies
60
62
if : matrix.platform == 'ubuntu-latest'
61
- run : sudo apt-get -y install libgtk-3-dev
63
+ run : |
64
+ sudo apt-get update
65
+ sudo apt-get -y install libgtk-3-dev
62
66
- name : Checkout
63
67
uses : actions/checkout@v3
64
68
- name : Setup Rust toolchain
89
93
steps :
90
94
- name : Install dependencies
91
95
if : matrix.packages != ''
92
- run : sudo apt-get -y install ${{ matrix.packages }}
96
+ run : |
97
+ sudo apt-get update
98
+ sudo apt-get -y install ${{ matrix.packages }}
93
99
- name : Checkout
94
100
uses : actions/checkout@v3
95
101
- name : Setup Rust toolchain
You can’t perform that action at this time.
0 commit comments