From 64860f502897f3085a1e94bfeb351df9d713fff1 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Fri, 9 Feb 2024 19:04:02 -0800 Subject: [PATCH] More tweaks to install commands --- .github/workflows/distro-smoke-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/distro-smoke-test.yml b/.github/workflows/distro-smoke-test.yml index a68e44a..5009394 100644 --- a/.github/workflows/distro-smoke-test.yml +++ b/.github/workflows/distro-smoke-test.yml @@ -38,14 +38,14 @@ jobs: if: ${{ matrix.distro == 'opensuse/leap:latest' }} run: | - # Install our dependencies (no sudo for OpenSUSE) - zypper install --non-interactive zsh tmux fish make gcc psmisc + # Install our dependencies + zypper install -y zsh tmux fish make gcc psmisc - name: Arch-based Setup if: ${{ matrix.distro == 'archlinux:latest' }} run: | # Install our dependencies - pacman install --noconfirm zsh tmux fish make gcc psmisc + pacman install -Sy --noconfirm zsh tmux fish make gcc psmisc - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v3