Skip to content

Commit 0cbec60

Browse files
authored
Merge pull request #1318 from IntelPython/merge_to_gold
Merge master into gold/2021
2 parents 93e92fc + 4f8032d commit 0cbec60

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
sudo apt-get install -y nvidia-cuda-toolkit clinfo
5555
5656
- name: Checkout repo
57-
uses: actions/checkout@v3.1.0
57+
uses: actions/checkout@v3.3.0
5858

5959
# https://github.com/marketplace/actions/setup-miniconda
6060
- name: Setup miniconda
@@ -94,7 +94,7 @@ jobs:
9494

9595
# https://github.com/marketplace/actions/doxygen-action
9696
- name: Build backend docs
97-
uses: mattnotmitt/[email protected].4
97+
uses: mattnotmitt/[email protected].5
9898
with:
9999
working-directory: 'dpnp/backend/doc'
100100

@@ -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/[email protected].0
109+
uses: peaceiris/[email protected].2
110110
with:
111111
github_token: ${{ secrets.GITHUB_TOKEN }}
112112
publish_dir: doc/_build/html/

.github/workflows/conda-package.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
access_token: ${{ github.token }}
4848

4949
- name: Checkout DPNP repo
50-
uses: actions/checkout@v3.1.0
50+
uses: actions/checkout@v3.3.0
5151
with:
5252
fetch-depth: 0
5353

@@ -74,7 +74,7 @@ jobs:
7474
run: conda install conda-build
7575

7676
- name: Cache conda packages
77-
uses: actions/cache@v3.0.11
77+
uses: actions/cache@v3.2.6
7878
env:
7979
CACHE_NUMBER: 1 # Increase to reset cache
8080
with:
@@ -89,7 +89,7 @@ jobs:
8989
run: conda build --no-test --python ${{ matrix.python }} ${{ env.CHANNELS }} conda-recipe
9090

9191
- name: Upload artifact
92-
uses: actions/[email protected].1
92+
uses: actions/[email protected].2
9393
with:
9494
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
9595
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
@@ -124,7 +124,7 @@ jobs:
124124

125125
steps:
126126
- name: Download artifact
127-
uses: actions/[email protected].1
127+
uses: actions/[email protected].2
128128
with:
129129
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
130130
path: ${{ env.pkg-path-in-channel }}
@@ -167,7 +167,7 @@ jobs:
167167
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}'
168168

169169
- name: Cache conda packages
170-
uses: actions/cache@v3.0.11
170+
uses: actions/cache@v3.2.6
171171
env:
172172
CACHE_NUMBER: 1 # Increase to reset cache
173173
with:
@@ -228,7 +228,7 @@ jobs:
228228

229229
steps:
230230
- name: Download artifact
231-
uses: actions/[email protected].1
231+
uses: actions/[email protected].2
232232
with:
233233
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
234234
path: ${{ env.pkg-path-in-channel }}
@@ -294,7 +294,7 @@ jobs:
294294
run: more lockfile
295295

296296
- name: Cache conda packages
297-
uses: actions/cache@v3.0.11
297+
uses: actions/cache@v3.2.6
298298
env:
299299
CACHE_NUMBER: 1 # Increase to reset cache
300300
with:
@@ -398,7 +398,7 @@ jobs:
398398
399399
steps:
400400
- name: Download artifact
401-
uses: actions/[email protected].1
401+
uses: actions/[email protected].2
402402
with:
403403
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
404404

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3.1.0
13-
- uses: actions/setup-python@v4.3.0
12+
- uses: actions/checkout@v3.3.0
13+
- uses: actions/setup-python@v4.5.0
1414
with:
1515
python-version: '3.10'
1616
- uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)