Skip to content

Commit

Permalink
bump github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik committed May 11, 2023
1 parent e23024b commit e7e39b8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
runs-on: ${{ matrix.config.os-image }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand All @@ -186,7 +186,7 @@ jobs:

- name: Setup Python (Windows)
if: matrix.config.os-name == 'windows'
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python-version }}

Expand All @@ -200,7 +200,7 @@ jobs:
NUMPY_VERSION: ${{ matrix.config.numpy-version }}

- name: Store wheels as artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand Down Expand Up @@ -336,12 +336,12 @@ jobs:
needs: build

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

- name: Download wheels from artifact storage
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -359,7 +359,7 @@ jobs:

- name: Setup Python (Windows)
if: matrix.config.os-name == 'windows'
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python-version }}

Expand All @@ -373,7 +373,7 @@ jobs:

- name: Setup Python (macOS)
if: matrix.config.os-name == 'mac'
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.config.python-version }}

Expand All @@ -390,15 +390,15 @@ jobs:
needs: build

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.9'

- name: Download wheels from artifact storage
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -412,7 +412,7 @@ jobs:
run: sphinx-build -b html docs dist-docs

- name: Store docs HTML as artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: docs
path: dist-docs
Expand All @@ -426,7 +426,7 @@ jobs:

steps:
- name: Download wheels from artifact storage
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: wheels
path: dist
Expand Down

0 comments on commit e7e39b8

Please sign in to comment.