Skip to content

Commit 42ffb16

Browse files
authoredMar 19, 2024
chore: bump the actions group with 5 updates (#194)
1 parent 878533b commit 42ffb16

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed
 

‎.github/workflows/conda.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v4
3131

3232
- name: Get conda
33-
uses: conda-incubator/setup-miniconda@v3.0.0
33+
uses: conda-incubator/setup-miniconda@v3.0.3
3434
with:
3535
python-version: ${{ matrix.python-version }}
3636
channels: conda-forge

‎.github/workflows/pip.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626

27-
- uses: actions/setup-python@v4
27+
- uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

‎.github/workflows/wheels.yml

+9-7
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ jobs:
2727
- name: Check metadata
2828
run: pipx run twine check dist/*
2929

30-
- uses: actions/upload-artifact@v3
30+
- uses: actions/upload-artifact@v4
3131
with:
32+
name: cibw-sdist
3233
path: dist/*.tar.gz
3334

3435

@@ -43,7 +44,7 @@ jobs:
4344
steps:
4445
- uses: actions/checkout@v4
4546

46-
- uses: pypa/cibuildwheel@v2.16
47+
- uses: pypa/cibuildwheel@v2.17
4748
env:
4849
CIBW_ARCHS_MACOS: auto universal2
4950

@@ -52,8 +53,9 @@ jobs:
5253
shell: bash
5354

5455
- name: Upload wheels
55-
uses: actions/upload-artifact@v3
56+
uses: actions/upload-artifact@v4
5657
with:
58+
name: cibw-wheels-${{ matrix.os }}
5759
path: wheelhouse/*.whl
5860

5961

@@ -64,15 +66,15 @@ jobs:
6466
if: github.event_name == 'release' && github.event.action == 'published'
6567

6668
steps:
67-
- uses: actions/setup-python@v4
69+
- uses: actions/setup-python@v5
6870
with:
6971
python-version: "3.x"
7072

71-
- uses: actions/download-artifact@v3
73+
- uses: actions/download-artifact@v4
7274
with:
73-
name: artifact
75+
pattern: cibw-*
7476
path: dist
75-
77+
merge-multiple: true
7678
- uses: pypa/gh-action-pypi-publish@release/v1
7779
with:
7880
user: __token__

0 commit comments

Comments
 (0)
Failed to load comments.