Skip to content

Commit f97c12a

Browse files
authored
Merge branch 'master' into exception_on_numpy_fallback
2 parents 0a1c414 + cfb62a6 commit f97c12a

File tree

3 files changed

+31
-29
lines changed

3 files changed

+31
-29
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Cancel Previous Runs
23-
uses: styfle/cancel-workflow-action@0.10.0
23+
uses: styfle/cancel-workflow-action@0.11.0
2424
with:
2525
access_token: ${{ github.token }}
2626

@@ -54,11 +54,11 @@ jobs:
5454
sudo apt-get install -y nvidia-cuda-toolkit clinfo
5555
5656
- name: Checkout repo
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v3.1.0
5858

5959
# https://github.com/marketplace/actions/setup-miniconda
6060
- name: Setup miniconda
61-
uses: conda-incubator/setup-miniconda@v2
61+
uses: conda-incubator/setup-miniconda@v2.1.1
6262
with:
6363
auto-update-conda: true
6464
python-version: ${{ env.python-ver }}
@@ -106,7 +106,7 @@ jobs:
106106
if: |
107107
!github.event.pull_request.head.repo.fork &&
108108
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/'))
109-
uses: peaceiris/actions-gh-pages@v3
109+
uses: peaceiris/actions-gh-pages@v3.8.0
110110
with:
111111
github_token: ${{ secrets.GITHUB_TOKEN }}
112112
publish_dir: doc/_build/html/

.github/workflows/conda-package.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@ jobs:
3131

3232
steps:
3333
- name: Cancel Previous Runs
34-
uses: styfle/cancel-workflow-action@0.10.0
34+
uses: styfle/cancel-workflow-action@0.11.0
3535
with:
3636
access_token: ${{ github.token }}
3737

3838
- name: Checkout DPNP repo
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v3.1.0
4040
with:
4141
fetch-depth: 0
4242

4343
- name: Checkout oneDPL
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v3.1.0
4545
with:
4646
repository: oneapi-src/oneDPL
4747
path: oneDPL
4848
ref: oneDPL-2021.7.0-release
4949

5050
- name: Setup miniconda
51-
uses: conda-incubator/setup-miniconda@v2
51+
uses: conda-incubator/setup-miniconda@v2.1.1
5252
with:
5353
auto-update-conda: true
5454
python-version: ${{ matrix.python }}
@@ -63,7 +63,7 @@ jobs:
6363
run: conda install conda-build
6464

6565
- name: Cache conda packages
66-
uses: actions/cache@v3
66+
uses: actions/cache@v3.0.11
6767
env:
6868
CACHE_NUMBER: 1 # Increase to reset cache
6969
with:
@@ -80,7 +80,7 @@ jobs:
8080
DPLROOT: '${{ github.workspace }}/oneDPL'
8181

8282
- name: Upload artifact
83-
uses: actions/upload-artifact@v2
83+
uses: actions/upload-artifact@v3.1.0
8484
with:
8585
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
8686
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
@@ -101,24 +101,24 @@ jobs:
101101

102102
steps:
103103
- name: Cancel Previous Runs
104-
uses: styfle/cancel-workflow-action@0.10.0
104+
uses: styfle/cancel-workflow-action@0.11.0
105105
with:
106106
access_token: ${{ github.token }}
107107

108108
- name: Checkout DPNP repo
109-
uses: actions/checkout@v3
109+
uses: actions/checkout@v3.1.0
110110
with:
111111
fetch-depth: 0
112112

113113
- name: Checkout oneDPL
114-
uses: actions/checkout@v3
114+
uses: actions/checkout@v3.1.0
115115
with:
116116
repository: oneapi-src/oneDPL
117117
path: oneDPL
118118
ref: oneDPL-2021.7.0-release
119119

120120
- name: Setup miniconda
121-
uses: conda-incubator/setup-miniconda@v2
121+
uses: conda-incubator/setup-miniconda@v2.1.1
122122
with:
123123
auto-update-conda: true
124124
python-version: ${{ matrix.python }}
@@ -132,7 +132,7 @@ jobs:
132132
(echo CONDA_BLD=%CONDA_PREFIX%\conda-bld\win-64\) >> %GITHUB_ENV%
133133
134134
- name: Cache conda packages
135-
uses: actions/cache@v3
135+
uses: actions/cache@v3.0.11
136136
env:
137137
CACHE_NUMBER: 1 # Increase to reset cache
138138
with:
@@ -152,7 +152,7 @@ jobs:
152152
DPLROOT: '%GITHUB_WORKSPACE%\oneDPL'
153153

154154
- name: Upload artifact
155-
uses: actions/upload-artifact@v2
155+
uses: actions/upload-artifact@v3.1.0
156156
with:
157157
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
158158
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
@@ -184,7 +184,7 @@ jobs:
184184

185185
steps:
186186
- name: Download artifact
187-
uses: actions/download-artifact@v2
187+
uses: actions/download-artifact@v3.0.0
188188
with:
189189
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
190190
path: ${{ env.pkg-path-in-channel }}
@@ -195,7 +195,7 @@ jobs:
195195
tar -xvf ${{ env.pkg-path-in-channel }}/${{ env.PACKAGE_NAME }}-*.tar.bz2 -C ${{ env.extracted-pkg-path }}
196196
197197
- name: Setup miniconda
198-
uses: conda-incubator/setup-miniconda@v2
198+
uses: conda-incubator/setup-miniconda@v2.1.1
199199
with:
200200
auto-update-conda: true
201201
python-version: ${{ matrix.python }}
@@ -227,7 +227,7 @@ jobs:
227227
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
228228

229229
- name: Cache conda packages
230-
uses: actions/cache@v3
230+
uses: actions/cache@v3.0.11
231231
env:
232232
CACHE_NUMBER: 1 # Increase to reset cache
233233
with:
@@ -284,7 +284,7 @@ jobs:
284284

285285
steps:
286286
- name: Download artifact
287-
uses: actions/download-artifact@v2
287+
uses: actions/download-artifact@v3.0.0
288288
with:
289289
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
290290
path: ${{ env.pkg-path-in-channel }}
@@ -304,7 +304,7 @@ jobs:
304304
dir ${{ env.extracted-pkg-path }}
305305
306306
- name: Setup miniconda
307-
uses: conda-incubator/setup-miniconda@v2
307+
uses: conda-incubator/setup-miniconda@v2.1.1
308308
with:
309309
auto-update-conda: true
310310
python-version: ${{ matrix.python }}
@@ -350,7 +350,7 @@ jobs:
350350
run: more lockfile
351351

352352
- name: Cache conda packages
353-
uses: actions/cache@v3
353+
uses: actions/cache@v3.0.11
354354
env:
355355
CACHE_NUMBER: 1 # Increase to reset cache
356356
with:
@@ -448,12 +448,12 @@ jobs:
448448

449449
steps:
450450
- name: Download artifact
451-
uses: actions/download-artifact@v2
451+
uses: actions/download-artifact@v3.0.0
452452
with:
453453
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
454454

455455
- name: Setup miniconda
456-
uses: conda-incubator/setup-miniconda@v2
456+
uses: conda-incubator/setup-miniconda@v2.1.1
457457
with:
458458
auto-update-conda: true
459459
python-version: ${{ matrix.python }}
@@ -486,12 +486,12 @@ jobs:
486486
python: ['3.8', '3.9']
487487
steps:
488488
- name: Download artifact
489-
uses: actions/download-artifact@v2
489+
uses: actions/download-artifact@v3.0.0
490490
with:
491491
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
492492

493493
- name: Setup miniconda
494-
uses: conda-incubator/setup-miniconda@v2
494+
uses: conda-incubator/setup-miniconda@v2.1.1
495495
with:
496496
auto-update-conda: true
497497
python-version: ${{ matrix.python }}

.github/workflows/pre-commit.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-python@v2
14-
- uses: pre-commit/[email protected]
12+
- uses: actions/[email protected]
13+
- uses: actions/[email protected]
14+
with:
15+
python-version: '3.10'
16+
- uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)