Added "apt-get update" to Install Ruby workflow
Some checks failed
Compile / Compile (push) Failing after 15s

This commit is contained in:
2026-01-06 17:39:49 -03:00
parent 13dbb86d38
commit 28529158e5

View File

@@ -10,7 +10,9 @@ jobs:
uses: actions/checkout@v3
- name: Install Ruby
run: apt-get install -y ruby-full
run: |
apt-get update
apt-get install -y ruby-full
- name: Install dependencies
run: bundle install