Skip to content

Commit

Permalink
minor cleanups
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Hellegouarch <sh@defuze.org>
  • Loading branch information
Lawouach committed Apr 18, 2024
1 parent 63d610e commit 71b56f5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
Expand All @@ -22,11 +22,11 @@ jobs:
mkdir deps
echo "Install CTK and minor dependencies"
pip --quiet install --prefer-binary --pre -U chaostoolkit-lib chaostoolkit
pip --quiet install --prefer-binary httplib2 uritemplate pytzdata msrestazure opentelemetry-api opentelemetry-sdk
pip install --prefer-binary --pre -U chaostoolkit-lib chaostoolkit
pip install --prefer-binary httplib2 uritemplate pytzdata
echo "install all the dependencies for our drivers"
pip --quiet install --prefer-binary -U -r requirements-toolkit.txt
pip install --prefer-binary -U -r requirements-toolkit.txt
echo "download all the extensions package to get access to their README and source"
pip download \
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_and_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m venv .venv
Expand All @@ -25,11 +25,11 @@ jobs:
mkdir deps
echo "Install CTK and minor dependencies"
pip --quiet install --prefer-binary --pre -U chaostoolkit-lib chaostoolkit
pip --quiet install --prefer-binary httplib2 uritemplate pytzdata msrestazure opentelemetry-api opentelemetry-sdk
pip install --prefer-binary --pre -U chaostoolkit-lib chaostoolkit
pip install --prefer-binary httplib2 uritemplate pytzdata
echo "install all the dependencies for our drivers"
pip --quiet install --prefer-binary -U -r requirements-toolkit.txt
pip install --prefer-binary -U -r requirements-toolkit.txt
echo "download all the extensions package to get access to their README and source"
pip download \
Expand Down

0 comments on commit 71b56f5

Please sign in to comment.