Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions versions #99

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/[email protected]

- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5.4.0
with:
python-version: "3.10"
cache: 'pip'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
access_token: ${{ github.token }}
- uses: actions/[email protected]
- uses: actions/setup-python@v5.3.0
- uses: actions/setup-python@v5.4.0
- uses: pre-commit/[email protected]

test:
Expand All @@ -40,7 +40,7 @@ jobs:
submodules: true

- name: Install Conda
uses: conda-incubator/[email protected].0
uses: conda-incubator/[email protected].1
with:
activate-environment: anaconda-client-env
python-version: ${{ matrix.python }}
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
submodules: true

- name: Set up Python 3.10
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: "3.10"

Expand All @@ -31,7 +31,7 @@ jobs:
python -m build --sdist

- name: Upload sdist
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.1
with:
name: sdist
path: dist
Expand All @@ -42,7 +42,7 @@ jobs:
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash .github/workflows/docker/buildwheel.sh

- name: Upload Wheels
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.1
with:
name: wheels
path: dist
Expand All @@ -55,11 +55,11 @@ jobs:
python: [3.9, "3.10", 3.11, 3.12]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
with:
name: wheels
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install wheel and test
Expand All @@ -78,11 +78,11 @@ jobs:
wordsize: [64]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
with:
name: wheels
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install wheel and test
Expand All @@ -101,11 +101,11 @@ jobs:
python: [3.9, "3.10", 3.11, 3.12]
steps:
- name: Download wheels
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
with:
name: wheels
- name: Set up Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ matrix.python }}
- name: Install wheel and test
Expand All @@ -124,16 +124,16 @@ jobs:
id-token: write
steps:
- name: Download all
uses: actions/download-artifact@v4.1.8
uses: actions/download-artifact@v4.2.0
- name: Move to dist
run: |
mkdir dist
cp */*.{whl,gz} dist/.
- name: Publish distribution to Test PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: pypa/[email protected].3
uses: pypa/[email protected].4
with:
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution to PRODUCTION PyPI
if: github.event_name == 'release'
uses: pypa/[email protected].3
uses: pypa/[email protected].4
Loading