Skip to content

Commit

Permalink
ci: added y flags to apt install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
bdromard committed Jan 24, 2024
1 parent 95dba7f commit 6280521
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/debian-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
- name: Install dependencies
run: |
apt update
apt install curl
apt install -y curl
- name: Download Debian 11 scaphandre package
run: |
curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ steps.deb11pkg.outputs.DEB11_PKG }}
- name: Install and run scaphandre Stdout exporter for 10 seconds
run: |
apt install ./${{ steps.deb11pkg.outputs.DEB11_PKG }}
apt install -y ./${{ steps.deb11pkg.outputs.DEB11_PKG }}
scaphandre stdout -t 10
deb12-container-install-scaphandre:
name: Create Debian 12 container and install scaphandre with URL
Expand All @@ -90,11 +90,11 @@ jobs:
- name: Install dependencies
run: |
apt update
apt install curl
apt install -y curl
- name: Download Debian 12 scaphandre package
run: |
curl -o https://s3.fr-par.scw.cloud/scaphandre/x86_64/${{ steps.deb12pkg.outputs.DEB12_PKG }}
- name: Install and run scaphandre Stdout exporter for 10 seconds
run: |
apt install ./${{ steps.deb12pkg.outputs.DEB12_PKG }}
apt install -y ./${{ steps.deb12pkg.outputs.DEB12_PKG }}
scaphandre stdout -t 10

0 comments on commit 6280521

Please sign in to comment.