Skip to content

Commit

Permalink
apt-get install -y
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim Fehrs committed Sep 20, 2023
1 parent 8b852e8 commit 2be0c91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ jobs:
run: |
chmod +x ./babylonnode
sudo apt-get update
sudo apt-get install containerd runc
sudo apt-get install -y containerd runc
./babylonnode docker dependencies
- name: Setup config
run: |

Check warning on line 472 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L472

shellcheck reported issue in this script: SC2086:info:9:5: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:472:9: shellcheck reported issue in this script: SC2086:info:9:5: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 472 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L472

shellcheck reported issue in this script: SC2086:info:8:5: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:472:9: shellcheck reported issue in this script: SC2086:info:8:5: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 472 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/ci.yml#L472

shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/ci.yml:472:9: shellcheck reported issue in this script: SC2086:info:2:10: Double quote to prevent globbing and word splitting [shellcheck]
Expand Down Expand Up @@ -604,7 +604,7 @@ jobs:
wget -O babylonnode https://github.com/radixdlt/babylon-nodecli/releases/download/2.0.0/babylonnode-ubuntu-22.04
chmod +x ./babylonnode
sudo apt-get update
sudo apt-get install postgresql-client jq
sudo apt-get install -y postgresql-client jq
./babylonnode docker dependencies
- name: "Execute User Flow: Install Core, Gateway and Monitoring on the same host"
run: |
Expand Down Expand Up @@ -637,7 +637,7 @@ jobs:
wget -O babylonnode https://github.com/radixdlt/babylon-nodecli/releases/download/2.0.0/babylonnode-ubuntu-22.04
chmod +x ./babylonnode
sudo apt-get update
sudo apt-get install containerd runc postgresql-client jq
sudo apt-get install -y containerd runc postgresql-client jq
./babylonnode docker dependencies
- name: "Execute User Flow: Install Core, Gateway and Monitoring on the same host"
run: |
Expand Down

0 comments on commit 2be0c91

Please sign in to comment.