From 6f7e576e779335d959d46060fbf73e79434232dd Mon Sep 17 00:00:00 2001 From: Camille <78221213+clatapie@users.noreply.github.com> Date: Wed, 22 Jan 2025 14:29:02 +0100 Subject: [PATCH] maint: using ``sudo apt update `` --- .github/workflows/ci_cd.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 841ef049..c037579b 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -101,17 +101,17 @@ jobs: run: | $(docker pull ghcr.io/ansys/dpf-core:22.2dev && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 ghcr.io/ansys/dpf-core:22.2dev && echo "DPF Server active on port ${{ env.DPF_PORT }}.") & - - name: "Install OS packages" - run: | - sudo apt-get update - sudo apt install zip pandoc libgl1-mesa-glx xvfb texlive-latex-extra latexmk graphviz texlive-xetex libgomp1 - - name: "Set up Python using cache" uses: actions/setup-python@v5 with: python-version: ${{ env.MAIN_PYTHON_VERSION }} cache: 'pip' cache-dependency-path: 'requirements/requirements_doc.txt' + + - name: "Install OS packages" + run: | + sudo apt update + sudo apt install zip pandoc libgl1-mesa-glx xvfb texlive-latex-extra latexmk graphviz texlive-xetex libgomp1 - name: "Install Python requirements" run: |