Skip to content

Commit

Permalink
fix(ci): use libxml2-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomgrus authored and omar-chahbouni-decathlon committed Mar 18, 2022
1 parent feddb2f commit 6332c5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-oauth2-dev-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@v2
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
name: Install xmllint
run: sudo apt-get install libxml2-utils
run: sudo apt-get update && sudo apt-get install libxml2-utils
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
name: Set up JDK
uses: actions/setup-java@v2.3.1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- name: stop oauth2-dev-server
run: docker-compose -f code/docker-compose.dev.yaml down
- name: Install xmllint
run: sudo apt-get install libxml2-utils
run: sudo apt-get update && sudo apt-get install libxml2-utils
- name: Prepare
id: prep
run: |
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
with:
python-version: 3.7
- name: Install xmllint
run: sudo apt-get install libxml2-utils
run: sudo apt-get update && sudo apt-get install libxml2-utils
- name: Bump version
working-directory: code
run: |
Expand Down

0 comments on commit 6332c5a

Please sign in to comment.