Skip to content

Commit

Permalink
FIX: update apt-get (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Apr 18, 2023
1 parent 6a8b60d commit adfd91c
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ runs:
packages: ${{ env.NEEDED_DEPS }}
version: 1.0

- name: "Update apt-get"
shell: bash
run: |
sudo apt-get update
- name: "Install system dependencies"
shell: bash
run: |
Expand Down
5 changes: 5 additions & 0 deletions doc-deploy-dev/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@ runs:
name: ${{ inputs.doc-artifact-name }}
path: version/dev

- name: "Update apt-get"
shell: bash
run: |
sudo apt-get update
- name: "Decompress artifact content"
shell: bash
if: inputs.decompress-artifact == 'true'
Expand Down
5 changes: 5 additions & 0 deletions doc-deploy-stable/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,11 @@ runs:
name: ${{ inputs.doc-artifact-name }}
path: version/${{ env.VERSION }}

- name: "Update apt-get"
shell: bash
run: |
sudo apt-get update
- name: "Decompress artifact content"
shell: bash
if: inputs.decompress-artifact == 'true'
Expand Down
5 changes: 5 additions & 0 deletions tests-pytest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ runs:
shell: bash
run: python -m pip install .

- name: "Update apt-get"
shell: bash
run: |
sudo apt-get update
- name: "Install X Virtual Frame Buffer"
shell: bash
if: inputs.requires-xvfb == 'true'
Expand Down

0 comments on commit adfd91c

Please sign in to comment.