Fix stale apt index in github actions (#24319)

This commit is contained in:
Claire
2023-03-30 14:19:33 +02:00
committed by GitHub
parent 67450cf002
commit e7c3e55874
4 changed files with 15 additions and 4 deletions

View File

@ -64,7 +64,9 @@ jobs:
- uses: actions/checkout@v3
- name: Install native Ruby dependencies
run: sudo apt-get install -y libicu-dev libidn11-dev
run: |
sudo apt-get update
sudo apt-get install -y libicu-dev libidn11-dev
- name: Set up bundler cache
uses: ruby/setup-ruby@v1