Skip to content

Commit

Permalink
--yes for apt-get install
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 31, 2025
1 parent e92eb16 commit aa7ec48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install -y postgresql-14
sudo apt-get update --yes --fix-missing
sudo apt-get install --yes postgresql-14
sudo ln -s /usr/lib/postgresql/14/bin/initdb /bin/initdb
sudo ln -s /usr/lib/postgresql/14/bin/postgres /bin/postgres
- uses: ruby/setup-ruby@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install -y postgresql-14
sudo apt-get update --yes --fix-missing
sudo apt-get install --yes postgresql-14
sudo ln -s /usr/lib/postgresql/14/bin/initdb /bin/initdb
sudo ln -s /usr/lib/postgresql/14/bin/postgres /bin/postgres
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ assets:
install: |-
export PATH=$PATH:/usr/lib/postgresql/10/bin
sudo apt-get -y update
sudo apt-get -y install libpq-dev
sudo apt-get install --yes libpq-dev
pdd -f /dev/null
bundle install --no-color
release:
Expand Down

0 comments on commit aa7ec48

Please sign in to comment.