diff --git a/.github/workflows/distro-smoke-test.yml b/.github/workflows/distro-smoke-test.yml index 94f48e3..28e6dbc 100644 --- a/.github/workflows/distro-smoke-test.yml +++ b/.github/workflows/distro-smoke-test.yml @@ -27,20 +27,20 @@ jobs: run: | # Install our dependencies - sudo apt-get update - sudo apt-get install -y zsh tmux fish + apt-get update + apt-get install -y zsh tmux fish # Work around a weird bug where zsh on ubuntu actions gives that directory 0777 which makes zsh refuse to start - sudo chmod 0755 -R /usr/share/zsh/ + chmod 0755 -R /usr/share/zsh/ # Set a consistent hostname so we can run tests that depend on it - sudo hostname ghaction-runner-hostname + hostname ghaction-runner-hostname - name: Fedora-based Setup if: ${{ matrix.distro == 'fedora:latest' }} run: | # Install our dependencies - sudo dnf update + sudo dnf update -y sudo dnf install -y zsh tmux fish # Set a consistent hostname so we can run tests that depend on it