Skip to content

Commit c780df3

Browse files
chore(deps): update github artifact actions (#301)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v5` -> `v6` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v4` -> `v5` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/download-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v5...v6) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v5`](https://redirect.github.com/actions/upload-artifact/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apify/impit). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a6b5d6d commit c780df3

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Copy redirect
3333
run: cp impit/docs/index.html target/doc/index.html
3434
- name: Upload artifact
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v5
3636
with:
3737
path: target/doc/
3838
name: rustdoc
@@ -71,7 +71,7 @@ jobs:
7171
run: cd impit-node && yarn docs
7272

7373
- name: Upload artifact
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v5
7575
with:
7676
path: impit-node/docs/
7777
name: typedoc
@@ -115,7 +115,7 @@ jobs:
115115
uv run make html
116116
117117
- name: Upload artifact
118-
uses: actions/upload-artifact@v4
118+
uses: actions/upload-artifact@v5
119119
with:
120120
path: impit-python/docs/_build/html
121121
name: sphinx-doc
@@ -130,12 +130,12 @@ jobs:
130130
needs: [build-rust, build-node, build-python]
131131
steps:
132132
- name: Download typedoc artifact
133-
uses: actions/download-artifact@v5
133+
uses: actions/download-artifact@v6
134134
with:
135135
name: typedoc
136136
path: docs/js/
137137
- name: Download Sphinx doc artifact
138-
uses: actions/download-artifact@v5
138+
uses: actions/download-artifact@v6
139139
with:
140140
name: sphinx-doc
141141
path: docs/python/

.github/workflows/node-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: yarn install
6262

6363
- name: Download all artifacts
64-
uses: actions/download-artifact@v5
64+
uses: actions/download-artifact@v6
6565
with:
6666
path: artifacts
6767

.github/workflows/node-test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
if: ${{ !matrix.settings.docker }}
160160
shell: bash
161161
- name: Upload artifact
162-
uses: actions/upload-artifact@v4
162+
uses: actions/upload-artifact@v5
163163
with:
164164
name: bindings-${{ matrix.settings.target }}
165165
path: impit-node/${{ env.APP_NAME }}.*.node
@@ -202,7 +202,7 @@ jobs:
202202
- name: Install dependencies
203203
run: yarn --cwd impit-node install
204204
- name: Download artifacts
205-
uses: actions/download-artifact@v5
205+
uses: actions/download-artifact@v6
206206
with:
207207
name: bindings-${{ matrix.settings.target }}
208208
path: impit-node
@@ -244,7 +244,7 @@ jobs:
244244
- name: Install dependencies
245245
run: yarn --cwd impit-node install
246246
- name: Download artifacts
247-
uses: actions/download-artifact@v5
247+
uses: actions/download-artifact@v6
248248
with:
249249
name: bindings-x86_64-unknown-linux-gnu
250250
path: impit-node
@@ -286,7 +286,7 @@ jobs:
286286
- name: Install dependencies
287287
run: yarn --cwd impit-node install
288288
- name: Download artifacts
289-
uses: actions/download-artifact@v5
289+
uses: actions/download-artifact@v6
290290
with:
291291
name: bindings-aarch64-unknown-linux-gnu
292292
path: impit-node
@@ -328,7 +328,7 @@ jobs:
328328
cache-dependency-path: impit-node/yarn.lock
329329

330330
- name: Download artifacts
331-
uses: actions/download-artifact@v5
331+
uses: actions/download-artifact@v6
332332
with:
333333
name: bindings-aarch64-unknown-linux-musl
334334
path: impit-node
@@ -369,7 +369,7 @@ jobs:
369369
cache-dependency-path: impit-node/yarn.lock
370370

371371
- name: Download artifacts
372-
uses: actions/download-artifact@v5
372+
uses: actions/download-artifact@v6
373373
with:
374374
name: bindings-x86_64-unknown-linux-musl
375375
path: impit-node

.github/workflows/python-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
needs: [test]
8484
steps:
8585
- name: Download all artifacts
86-
uses: actions/download-artifact@v5
86+
uses: actions/download-artifact@v6
8787
with:
8888
path: impit-python/artifacts
8989

.github/workflows/python-test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
esac
9595
9696
- name: Upload wheels
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
with:
9999
name: wheels-linux-${{ matrix.target }}
100100
path: impit-python/dist
@@ -124,7 +124,7 @@ jobs:
124124
python-version: 3.14
125125

126126
- name: Download wheels
127-
uses: actions/download-artifact@v5
127+
uses: actions/download-artifact@v6
128128
with:
129129
name: wheels-linux-${{ matrix.platform.target }}
130130
path: impit-python/dist
@@ -179,7 +179,7 @@ jobs:
179179
sudo apt-get install -y pkg-config libssl-dev perl
180180
181181
- name: Upload wheels
182-
uses: actions/upload-artifact@v4
182+
uses: actions/upload-artifact@v5
183183
with:
184184
name: wheels-musllinux-${{ matrix.platform.target }}
185185
path: impit-python/dist
@@ -256,7 +256,7 @@ jobs:
256256
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
257257

258258
- name: Upload wheels
259-
uses: actions/upload-artifact@v4
259+
uses: actions/upload-artifact@v5
260260
with:
261261
name: wheels-windows-${{ matrix.platform.target }}
262262
path: impit-python/dist
@@ -311,7 +311,7 @@ jobs:
311311
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
312312

313313
- name: Upload wheels
314-
uses: actions/upload-artifact@v4
314+
uses: actions/upload-artifact@v5
315315
with:
316316
name: wheels-macos-${{ matrix.platform.target }}
317317
path: impit-python/dist

0 commit comments

Comments
 (0)