Skip to content

Commit c5eb010

Browse files
Make CI apt update, because Microsoft sure doesn't.
1 parent ff50a1b commit c5eb010

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/dub_test_build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ jobs:
7070
- name: 'Install linux dependencies...'
7171
if: ${{ inputs.linux_deps != '' && matrix.os == 'ubuntu-latest' }}
7272
run: |
73-
sudo apt install -y ${{ inputs.linux_deps }}
73+
sudo apt-get update -y
74+
sudo apt-get install -y ${{ inputs.linux_deps }}
7475
7576
- name: 'Install osx dependencies...'
7677
if: ${{ inputs.osx_deps != '' && matrix.os == 'macOS-latest' }}

0 commit comments

Comments
 (0)