Skip to content

Commit

Permalink
Fix manylinux actions failing due to nodejs20 by downgrading
Browse files Browse the repository at this point in the history
  • Loading branch information
lasa01 committed Jun 18, 2024
1 parent 53a6c90 commit 310c374
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
container: quay.io/pypa/manylinux2014_x86_64

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Select Python version
run: echo "/opt/python/cp310-cp310/bin" >> $GITHUB_PATH
- uses: actions-rs/toolchain@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
needs: check-version

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Select Python version
run: echo "/opt/python/cp310-cp310/bin" >> $GITHUB_PATH
- uses: actions-rs/toolchain@v1
Expand All @@ -83,7 +83,7 @@ jobs:
shell: bash
run: for filename in dist/*.zip; do mv "${filename}" "${filename%.zip}-${{ runner.os }}.zip"; done;
- name: Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v1
with:
draft: true
fail_on_unmatched_files: true
Expand Down

0 comments on commit 310c374

Please sign in to comment.