From 7883238a15e78af5f4059a878d993aec98c54827 Mon Sep 17 00:00:00 2001 From: toncho11 Date: Thu, 22 Dec 2022 09:02:51 +0100 Subject: [PATCH] Replacing of "apt" with "apt-get" This is to remove the warning "WARNING: apt does not have a stable CLI interface." in ELKS workflows. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e56b77cf..c623a500a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: steps: - name: setup - run: 'sudo apt install bison flex texinfo libncurses5-dev libelf-dev mtools ncompress' + run: 'sudo apt-get install bison flex texinfo libncurses5-dev libelf-dev mtools ncompress' - name: checkout uses: actions/checkout@v2