diff --git a/.github/workflows/cd-docs.yml b/.github/workflows/cd-docs.yml index 0ad8a4c5be4..23a69572594 100644 --- a/.github/workflows/cd-docs.yml +++ b/.github/workflows/cd-docs.yml @@ -10,8 +10,10 @@ jobs: - uses: actions/checkout@v3 - name: Install Dependencies (Linux) run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler git python3 && sudo apt-get update --fix-missing + - name: Install pip3 + run: sudo apt install -y python3-pip - name: Install Python3 modules - run: sudo apt-get install -y python3-pandas python3-tabulate + run: sudo pip3 install pandas tabulate - name: Install rsync run: sudo apt-get install rsync - uses: rlespinasse/github-slug-action@v3.x diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index 9a4ebf1a43d..d4d6eebd500 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -14,8 +14,10 @@ jobs: - uses: actions/checkout@v3 - name: Install Dependencies (Linux) run: sudo apt-get update && sudo apt-get install -y build-essential curl wget libssl-dev libudev-dev squashfs-tools protobuf-compiler git python3 && sudo apt-get update --fix-missing + - name: Install pip3 + run: sudo apt install -y python3-pip - name: Install Python3 modules - run: sudo apt-get install -y python3-pandas python3-tabulate + run: sudo pip3 install pandas tabulate - name: Install rsync run: sudo apt-get install rsync - uses: rlespinasse/github-slug-action@v3.x