Skip to content

Commit

Permalink
Fix running CI on ubuntu-latest which is Ubuntu 24 now (#1972)
Browse files Browse the repository at this point in the history
* Fix running CI on `ubuntu-latest` which is Ubuntu 24 now

* Fix typo
  • Loading branch information
VitaliySerov authored Oct 18, 2024
1 parent ab46624 commit 01c32fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
sudo apt-get -y update
sudo apt-get -y install google-chrome-stable
- name: Install dependencies
run: sudo apt -y install ffmpeg
run: |
sudo apt -y install \
ffmpeg \
imagemagick
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## master (unreleased)

### Fix

* Fix running CI on `ubuntu-latest` which is Ubuntu 24 now

## 1.31.0 (2024-09-30)

### New Features
Expand Down

0 comments on commit 01c32fe

Please sign in to comment.