Skip to content

Commit

Permalink
Bump workflow actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoodsend committed Jan 1, 2024
1 parent 038f540 commit 74d04e0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
architecture: x86
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-python@v1
- uses: actions/setup-python@v5
with:
python-version: 3.9
architecture: ${{ matrix.architecture }}
Expand Down Expand Up @@ -60,9 +60,9 @@ jobs:
rm $OLD_WHEEL
- name: Upload wheel(s) as build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
name: wheels-${{ matrix.os }}-${{ matrix.architecture }}
path: dist/*.whl

- name: Test Wheel
Expand All @@ -86,7 +86,7 @@ jobs:
]
steps:

- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: crazy-max/ghaction-docker-buildx@v3.3.0

- name: Build docker image
Expand All @@ -102,9 +102,9 @@ jobs:
"
- name: Upload wheel(s) as build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
name: wheels-${{ matrix.base }}
path: dist/*.whl

- name: Install and test wheel
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:

steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
Expand Down

0 comments on commit 74d04e0

Please sign in to comment.