From ec10e0b13289191b1dc7decc33bcc8e9c473b19b Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Fri, 1 Nov 2024 16:36:06 +0100 Subject: [PATCH] Remove redundant upgrade command in CI workflow The `sudo apt-get -y upgrade` command was removed from the CI workflow's "Install sendmail" step. This change simplifies the installation process by ensuring only the necessary updates and installations are performed, which can contribute to faster and more reliable CI runs. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0411d3..2901602 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: check-latest: true - name: Install sendmail run: | - sudo apt-get -y update && sudo apt-get -y upgrade && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install nullmailer && which sendmail + sudo apt-get -y update && sudo DEBIAN_FRONTEND=noninteractive apt-get -y install nullmailer && which sendmail - name: Run go test if: success() run: |