Skip to content

Commit 2dfa11e

Browse files
chore(deps): bump the actions group with 3 updates (#1055)
Bumps the actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ab501e2 commit 2dfa11e

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/emscripten.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
CIBW_PLATFORM: pyodide
3030

3131
- name: Upload wheels
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@v5
3333
with:
3434
name: pyodide-wheel
3535
path: wheelhouse/*.whl

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/setup-python@v6
2323
with:
2424
python-version: "3.9"
25-
- uses: astral-sh/setup-uv@v6
25+
- uses: astral-sh/setup-uv@v7
2626
- name: Build and install kernel
2727
run: uv run --group examples -m ipykernel install --user --name boost-hist
2828
- name: Examples

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
- uses: rui314/setup-mold@v1
8282

83-
- uses: astral-sh/setup-uv@v6
83+
- uses: astral-sh/setup-uv@v7
8484

8585
- uses: hendrikmuhs/[email protected]
8686
with:
@@ -127,13 +127,13 @@ jobs:
127127
submodules: true
128128
fetch-depth: 0
129129

130-
- uses: astral-sh/setup-uv@v6
130+
- uses: astral-sh/setup-uv@v7
131131

132132
- uses: pypa/[email protected]
133133
with:
134134
only: "${{ matrix.only }}"
135135

136-
- uses: actions/upload-artifact@v4
136+
- uses: actions/upload-artifact@v5
137137
with:
138138
path: wheelhouse/*
139139
name: test-wheels-${{ strategy.job-index }}

.github/workflows/wheels.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Check metadata
4141
run: pipx run twine check --strict dist/*.tar.gz
4242

43-
- uses: actions/upload-artifact@v4
43+
- uses: actions/upload-artifact@v5
4444
with:
4545
path: dist/*
4646
name: wheels-sdist
@@ -98,7 +98,7 @@ jobs:
9898
fetch-depth: 0
9999
submodules: true
100100

101-
- uses: astral-sh/setup-uv@v6
101+
- uses: astral-sh/setup-uv@v7
102102

103103
- uses: pypa/[email protected]
104104
env:
@@ -110,7 +110,7 @@ jobs:
110110
shell: bash
111111

112112
- name: Upload wheels
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v5
114114
with:
115115
path: wheelhouse/*.whl
116116
name: wheels-${{ strategy.job-index }}
@@ -140,7 +140,7 @@ jobs:
140140
shell: bash
141141

142142
- name: Upload wheels
143-
uses: actions/upload-artifact@v4
143+
uses: actions/upload-artifact@v5
144144
with:
145145
path: wheelhouse/*.whl
146146
name: wheels-ios-${{ matrix.runs-on }}
@@ -167,7 +167,7 @@ jobs:
167167
# shell: bash
168168
#
169169
# - name: Upload wheels
170-
# uses: actions/upload-artifact@v4
170+
# uses: actions/upload-artifact@v5
171171
# with:
172172
# path: wheelhouse/*.whl
173173
# name: wheels-android-${{ matrix.runs-on }}
@@ -186,7 +186,7 @@ jobs:
186186
contents: read
187187

188188
steps:
189-
- uses: actions/download-artifact@v5
189+
- uses: actions/download-artifact@v6
190190
with:
191191
pattern: wheels-*
192192
merge-multiple: true
@@ -211,7 +211,7 @@ jobs:
211211
needs: [build_wheels]
212212
runs-on: ubuntu-latest
213213
steps:
214-
- uses: actions/download-artifact@v5
214+
- uses: actions/download-artifact@v6
215215
with:
216216
pattern: wheels-*
217217
merge-multiple: true

0 commit comments

Comments
 (0)