Skip to content

Commit

Permalink
chore: bump actions using node 16 to node 20 (#414)
Browse files Browse the repository at this point in the history
Signed-off-by: ThibaultFy <[email protected]>
  • Loading branch information
ThibaultFy authored Apr 29, 2024
1 parent 9423d4a commit e5a143d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
name: Lint and documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install tools
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
name: Tests on Python ${{ matrix.python-version }}
steps:
- name: Set up python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand All @@ -63,11 +63,11 @@ jobs:
export PATH=/home/runner/bin:$PATH
/home/runner/bin/dockerd-rootless.sh & # Start Docker rootless in the background
- name: Cloning substra
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: substra
- name: Cloning substratools
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: Substra/substra-tools
path: substratools
Expand Down
1 change: 1 addition & 0 deletions tests/sdk/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def test_client_should_raise_when_missing_name():
def test_client_with_password(mocker):
mocker.patch("substra.sdk.Client.login", side_effect=stub_login)
rest_client_logout = mocker.patch("substra.sdk.backends.remote.rest_client.Client.logout")
rest_client_logout.reset_mock()
client_args = {
"backend_type": "remote",
"url": "example.com",
Expand Down

0 comments on commit e5a143d

Please sign in to comment.