Skip to content

Commit 599ade2

Browse files
chore(deps): bump the actions group with 6 updates (#133)
1 parent 2e8f1c4 commit 599ade2

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727

2828
- name: Get conda
29-
uses: conda-incubator/[email protected].0
29+
uses: conda-incubator/[email protected].3
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
channels: conda-forge

.github/workflows/enscripten.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
submodules: true
2121
fetch-depth: 0
2222

23-
- uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: "3.11"
2626

@@ -34,7 +34,7 @@ jobs:
3434
EMSCRIPTEN_VERSION=$(pyodide config get emscripten_version)
3535
echo "emsdk-version=$EMSCRIPTEN_VERSION" >> $GITHUB_OUTPUT
3636
37-
- uses: mymindstorm/setup-emsdk@v13
37+
- uses: mymindstorm/setup-emsdk@v14
3838
with:
3939
version: ${{ steps.compute-emsdk-version.outputs.emsdk-version }}
4040
actions-cache-folder: emsdk-cache
@@ -43,7 +43,7 @@ jobs:
4343
- name: Build
4444
run: CFLAGS=-fexceptions LDFLAGS=-fexceptions pyodide build
4545

46-
- uses: actions/upload-artifact@v3
46+
- uses: actions/upload-artifact@v4
4747
with:
4848
path: dist/*.whl
4949

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222

23-
- uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

.github/workflows/wheels.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ jobs:
3232
- name: Check metadata
3333
run: pipx run twine check dist/*
3434

35-
- uses: actions/upload-artifact@v3
35+
- uses: actions/upload-artifact@v4
3636
with:
37+
name: cibw-sdist
3738
path: dist/*.tar.gz
3839

3940

@@ -50,7 +51,7 @@ jobs:
5051
with:
5152
submodules: true
5253

53-
- uses: pypa/cibuildwheel@v2.16
54+
- uses: pypa/cibuildwheel@v2.17
5455
env:
5556
CIBW_ARCHS_MACOS: universal2
5657
CIBW_ARCHS_WINDOWS: auto ARM64
@@ -59,8 +60,9 @@ jobs:
5960
run: git diff --exit-code
6061
shell: bash
6162

62-
- uses: actions/upload-artifact@v3
63+
- uses: actions/upload-artifact@v4
6364
with:
65+
name: cibw-wheels-${{ matrix.os }}
6466
path: wheelhouse/*.whl
6567

6668

@@ -74,13 +76,14 @@ jobs:
7476
id-token: write
7577

7678
steps:
77-
- uses: actions/setup-python@v4
79+
- uses: actions/setup-python@v5
7880
with:
7981
python-version: "3.x"
8082

81-
- uses: actions/download-artifact@v3
83+
- uses: actions/download-artifact@v4
8284
with:
83-
name: artifact
85+
pattern: cibw-*
86+
merge-multiple: true
8487
path: dist
8588

8689
- uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)