Skip to content

Commit

Permalink
update apt repositories
Browse files Browse the repository at this point in the history
It seemed more common to just run apt-get install in actions workflows
so I thought that the repository was made up to date in the images
somehow. The technology is not ready for that it would seem.
  • Loading branch information
odrling committed Dec 24, 2023
1 parent e853b7d commit 1f8b35f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cache: 'pip'

- name: install native dependencies (Ubuntu)
run: sudo apt-get install -y vlc mpv
run: sudo apt-get update && sudo apt-get install -y vlc mpv
if: matrix.os == 'ubuntu-20.04'

- name: install native dependencies (MacOS)
Expand Down

0 comments on commit 1f8b35f

Please sign in to comment.