From 099491ca3450d6c1fb71f4ff19cdc52a8ce2bcdc Mon Sep 17 00:00:00 2001 From: AxtelSturnclaw <4218491+sturnclaw@users.noreply.github.com> Date: Wed, 1 Jan 2025 05:40:02 -0500 Subject: [PATCH] Migrate apt-fast -> apt-get `apt-fast` is no longer included as a package in the `ubuntu-latest` Github action runner as an alternative to `apt-get`. --- .github/workflows/naturaldocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/naturaldocs.yml b/.github/workflows/naturaldocs.yml index 6be3ed97b95..bd29babebd1 100644 --- a/.github/workflows/naturaldocs.yml +++ b/.github/workflows/naturaldocs.yml @@ -47,8 +47,8 @@ jobs: - name: Install Dependencies run: | - sudo apt-fast update - sudo apt-fast install -y ${{ env.packages }} + sudo apt-get update + sudo apt-get install -y ${{ env.packages }} - name: Download natural docs uses: wei/wget@v1