-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update versions of external github actions (#1316)
- Loading branch information
1 parent
307fceb
commit 384302c
Showing
3 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,7 @@ jobs: | |
sudo apt-get install -y nvidia-cuda-toolkit clinfo | ||
- name: Checkout repo | ||
uses: actions/checkout@v3.1.0 | ||
uses: actions/checkout@v3.3.0 | ||
|
||
# https://github.com/marketplace/actions/setup-miniconda | ||
- name: Setup miniconda | ||
|
@@ -94,7 +94,7 @@ jobs: | |
|
||
# https://github.com/marketplace/actions/doxygen-action | ||
- name: Build backend docs | ||
uses: mattnotmitt/[email protected].4 | ||
uses: mattnotmitt/[email protected].5 | ||
with: | ||
working-directory: 'dpnp/backend/doc' | ||
|
||
|
@@ -106,7 +106,7 @@ jobs: | |
if: | | ||
!github.event.pull_request.head.repo.fork && | ||
(github.ref == 'refs/heads/master' || (startsWith(github.ref, 'refs/heads/release') == true) || github.event_name == 'push' && contains(github.ref, 'refs/tags/')) | ||
uses: peaceiris/[email protected].0 | ||
uses: peaceiris/[email protected].2 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: doc/_build/html/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ jobs: | |
access_token: ${{ github.token }} | ||
|
||
- name: Checkout DPNP repo | ||
uses: actions/checkout@v3.1.0 | ||
uses: actions/checkout@v3.3.0 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -74,7 +74,7 @@ jobs: | |
run: conda install conda-build | ||
|
||
- name: Cache conda packages | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v3.2.6 | ||
env: | ||
CACHE_NUMBER: 1 # Increase to reset cache | ||
with: | ||
|
@@ -89,7 +89,7 @@ jobs: | |
run: conda build --no-test --python ${{ matrix.python }} ${{ env.CHANNELS }} conda-recipe | ||
|
||
- name: Upload artifact | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} | ||
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2 | ||
|
@@ -124,7 +124,7 @@ jobs: | |
|
||
steps: | ||
- name: Download artifact | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} | ||
path: ${{ env.pkg-path-in-channel }} | ||
|
@@ -167,7 +167,7 @@ jobs: | |
TEST_CHANNELS: '-c ${{ env.channel-path }} ${{ env.CHANNELS }}' | ||
|
||
- name: Cache conda packages | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v3.2.6 | ||
env: | ||
CACHE_NUMBER: 1 # Increase to reset cache | ||
with: | ||
|
@@ -228,7 +228,7 @@ jobs: | |
|
||
steps: | ||
- name: Download artifact | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} | ||
path: ${{ env.pkg-path-in-channel }} | ||
|
@@ -294,7 +294,7 @@ jobs: | |
run: more lockfile | ||
|
||
- name: Cache conda packages | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v3.2.6 | ||
env: | ||
CACHE_NUMBER: 1 # Increase to reset cache | ||
with: | ||
|
@@ -398,7 +398,7 @@ jobs: | |
steps: | ||
- name: Download artifact | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ jobs: | |
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.1.0 | ||
- uses: actions/setup-python@v4.3.0 | ||
- uses: actions/checkout@v3.3.0 | ||
- uses: actions/setup-python@v4.5.0 | ||
with: | ||
python-version: '3.10' | ||
- uses: pre-commit/[email protected] |