Skip to content

Commit

Permalink
--yes for apt-get install
Browse files Browse the repository at this point in the history
  • Loading branch information
davvd committed Jan 31, 2025
1 parent cbd1dd5 commit 63446d6
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 @@ -29,8 +29,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 @@ -39,8 +39,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 @@ -32,7 +32,7 @@ assets:
install: |-
export PATH=$PATH:/usr/lib/postgresql/12/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 "--gemfile=$(pwd)/Gemfile"
release:
Expand Down

0 comments on commit 63446d6

Please sign in to comment.