Skip to content

Commit 396cd00

Browse files
committed
Run apt-get update before apt-get install
Switch from apt install to apt-get install, may avoid: ``` WARNING: apt does not have a stable CLI interface. Use with caution in scripts. ```
1 parent c4fd5b9 commit 396cd00

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
ruby-version: ${{ matrix.ruby }}
1919
- name: Install dependencies
2020
run: |
21-
sudo apt install tk-dev
21+
sudo apt-get update
22+
sudo apt-get install tk-dev
2223
gem install bundler --no-document
2324
bundle install
2425
- name: Run test

0 commit comments

Comments
 (0)