From ae789879c6bef89b299b2a5782ad24e4ce1b600e Mon Sep 17 00:00:00 2001 From: David Dworken Date: Fri, 9 Feb 2024 19:02:12 -0800 Subject: [PATCH] Update install commands for OpenSUSE and Arch --- .github/workflows/distro-smoke-test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/distro-smoke-test.yml b/.github/workflows/distro-smoke-test.yml index 46c1c56a..a68e44a7 100644 --- a/.github/workflows/distro-smoke-test.yml +++ b/.github/workflows/distro-smoke-test.yml @@ -39,14 +39,13 @@ jobs: run: | # Install our dependencies (no sudo for OpenSUSE) - dnf update -y - dnf install -y zsh tmux fish make gcc psmisc + zypper install --non-interactive zsh tmux fish make gcc psmisc - name: Arch-based Setup if: ${{ matrix.distro == 'archlinux:latest' }} run: | # Install our dependencies - pacman install -y zsh tmux fish make gcc psmisc + pacman install --noconfirm zsh tmux fish make gcc psmisc - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v3