Skip to content

Commit

Permalink
Merge pull request #41 from andreped/fix/ci-deprecation
Browse files Browse the repository at this point in the history
Fix action deprecation
  • Loading branch information
andreped authored Jan 30, 2025
2 parents 13b593e + afdcdfa commit 83b5a36
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Set up Python 3.6
uses: actions/setup-python@v2
Expand All @@ -26,7 +26,7 @@ jobs:
run: python setup.py bdist_wheel

- name: Upload Python wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "Python wheel"
path: ./dist/*
Expand All @@ -52,7 +52,7 @@ jobs:
run: pip install wheel setuptools

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: "Python wheel"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Set up Python 3.6
uses: actions/setup-python@v2
Expand All @@ -26,7 +26,7 @@ jobs:
run: python setup.py bdist_wheel

- name: Upload Python wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "Python wheel"
path: ./dist/*
Expand All @@ -52,7 +52,7 @@ jobs:
run: pip install wheel setuptools

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: "Python wheel"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/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 repo
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Set up Python 3.10
uses: actions/setup-python@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Set up Python 3.6
uses: actions/setup-python@v2
Expand All @@ -27,7 +27,7 @@ jobs:
run: python setup.py bdist_wheel

- name: Upload Python wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: "Python wheel"
path: ./dist/*
Expand Down

0 comments on commit 83b5a36

Please sign in to comment.