Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump actions using node 16 to node 20 #414

Merged
merged 2 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading