From 628052165b6300933810f19cfa9551c61aa67c62 Mon Sep 17 00:00:00 2001 From: repair Date: Wed, 24 Jan 2024 15:33:15 +0100 Subject: [PATCH] ci: added y flags to apt install commands --- .github/workflows/debian-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/debian-release.yml b/.github/workflows/debian-release.yml index 776edc90..5ab527bc 100644 --- a/.github/workflows/debian-release.yml +++ b/.github/workflows/debian-release.yml @@ -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 @@ -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