diff --git a/.github/workflows/build-latest.yaml b/.github/workflows/build-latest.yaml index e64e6e3..9ece3af 100644 --- a/.github/workflows/build-latest.yaml +++ b/.github/workflows/build-latest.yaml @@ -29,13 +29,15 @@ jobs: steps: - name: clone uses: actions/checkout@v2 + - name: update apt cache + run: apt update --yes + - name: install sudo + run: apt install --yes sudo + - name: upgrade packages + run: apt upgrade --yes - name: install build-essential - run: - sudo apt update --yes && \ - sudo apt upgrade --yes && \ - sudo apt install --yes build-essential + run: apt install --yes build-essential - name: set up docker uses: docker-practice/actions-setup-docker@master - name: build - run: | - make container-image/build/amd64 \ No newline at end of file + run: make container-image/build/amd64 \ No newline at end of file