Skip to content

Commit 61e09be

Browse files
authored
build(ci): Migrate actions to later Node version (#1003)
1 parent 8a1eb1c commit 61e09be

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/ci.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242

4343
steps:
4444
- name: Checkout code
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
- name: Set up Python ${{ matrix.python-version }}
48-
uses: actions/setup-python@v4
48+
uses: actions/setup-python@v5
4949
with:
5050
python-version: ${{ matrix.python-version }}
5151

@@ -73,7 +73,7 @@ jobs:
7373
pytest -m "not tf1" alibi
7474
7575
- name: Upload coverage to Codecov
76-
uses: codecov/codecov-action@v3
76+
uses: codecov/codecov-action@v4
7777
with:
7878
directory: .
7979
env_vars: ${{matrix.os}}, ${{matrix.python-version}}
@@ -89,9 +89,9 @@ jobs:
8989
runs-on: ubuntu-latest
9090

9191
steps:
92-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v4
9393
- name: Set up Python 3.x
94-
uses: actions/setup-python@v4
94+
uses: actions/setup-python@v5
9595
with:
9696
python-version: '3.10'
9797
- name: Install dependencies
@@ -117,9 +117,9 @@ jobs:
117117
options: --user root
118118

119119
steps:
120-
- uses: actions/checkout@v3
120+
- uses: actions/checkout@v4
121121
- name: Set up Python 3.x
122-
uses: actions/setup-python@v4
122+
uses: actions/setup-python@v5
123123
with:
124124
python-version: '3.10'
125125
- name: Install dependencies
@@ -139,9 +139,9 @@ jobs:
139139
runs-on: ubuntu-latest
140140

141141
steps:
142-
- uses: actions/checkout@v3
142+
- uses: actions/checkout@v4
143143
- name: Set up Python 3.x
144-
uses: actions/setup-python@v4
144+
uses: actions/setup-python@v5
145145
with:
146146
python-version: '3.10'
147147
- name: Check 3rd party licenses haven't changed
@@ -157,9 +157,9 @@ jobs:
157157
matrix:
158158
env: [ 'default', 'tensorflow', 'torch', 'shap', 'ray', 'all' ]
159159
steps:
160-
- uses: actions/checkout@v3
160+
- uses: actions/checkout@v4
161161
- name: Set up Python 3.x
162-
uses: actions/setup-python@v4
162+
uses: actions/setup-python@v5
163163
with:
164164
python-version: '3.10'
165165
- name: Check optional dependency imports are protected

.github/workflows/test_all_notebooks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131

3232
- name: Set up Python ${{ matrix.python-version }}
33-
uses: actions/setup-python@v4
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636

.github/workflows/test_changed_notebooks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
4040

@@ -46,7 +46,7 @@ jobs:
4646
doc/source/examples/*.ipynb
4747
4848
- name: Set up Python ${{ matrix.python-version }}
49-
uses: actions/setup-python@v4
49+
uses: actions/setup-python@v5
5050
with:
5151
python-version: ${{ matrix.python-version }}
5252

0 commit comments

Comments
 (0)