Skip to content

Commit

Permalink
github actions: update to node-20 version
Browse files Browse the repository at this point in the history
  • Loading branch information
hvasbath committed Mar 6, 2024
1 parent e30789b commit 1135a22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Exclude windows-2019

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


- name: Build wheels
Expand All @@ -22,20 +22,20 @@ jobs:
CIBW_ARCHS_MACOS: x86_64 universal2
CIBW_SKIP: "{pp*,*musllinux*}"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz

Expand All @@ -48,7 +48,7 @@ jobs:
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yaml
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
- uses: actions/setup-python@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: pre-commit/action@v3.0.0
python-version: 3.9
- uses: pre-commit/action@v4.0.0

0 comments on commit 1135a22

Please sign in to comment.