Skip to content

Commit

Permalink
Update versions of external github actions (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonwolfy committed Feb 24, 2023
1 parent 307fceb commit 384302c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'

Expand All @@ -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/
16 changes: 8 additions & 8 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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:
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

0 comments on commit 384302c

Please sign in to comment.