[workflows] Add missing -y option to apt-get for abi tests (#133337) · llvm/llvm-project@2f6c580 (original) (raw)

Original file line number Diff line number Diff line change
@@ -104,7 +104,7 @@ jobs:
104 104 - name: Install abi-compliance-checker
105 105 run: |
106 106 sudo apt-get update
107 - sudo apt-get install abi-dumper autoconf pkg-config
107 + sudo apt-get install -y abi-dumper autoconf pkg-config
108 108 - name: Install universal-ctags
109 109 run: |
110 110 git clone https://github.com/universal-ctags/ctags.git
@@ -157,7 +157,7 @@ jobs:
157 157 - name: Install abi-compliance-checker
158 158 run: |
159 159 sudo apt-get update
160 - sudo apt-get install abi-compliance-checker
160 + sudo apt-get install -y abi-compliance-checker
161 161 - name: Compare ABI
162 162 run: |
163 163 for lib in ${{ needs.abi-dump-setup.outputs.ABI_LIBS }}; do