Skip to content

Commit

Permalink
fix(CI): node 16 -> node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
sehoffmann committed Mar 13, 2024
1 parent 83048e7 commit 09f2697
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup_environment/action.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Setup CI Environment
inputs:
python-version:
default: "3.9"
default: "3.10"
type: string

runs:
using: composite
steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_and_upload_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
submodules: recursive
Expand All @@ -36,7 +36,7 @@ jobs:
python -m build
- name: Upload Wheels to Github
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist/*.whl
Expand All @@ -49,13 +49,13 @@ jobs:
upload: ${{ steps.trigger_upload.outputs.value }}
steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.10"

- name: Download Artifacts From Github
continue-on-error: true
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- "3.10"
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down

0 comments on commit 09f2697

Please sign in to comment.