Skip to content

Commit 1e7dfb8

Browse files
chore(deps): update github artifact actions (#336)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v6` -> `v7` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v5` -> `v6` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v7`](https://redirect.github.com/actions/download-artifact/compare/v6...v7) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v6...v7) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) </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:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent fb86759 commit 1e7dfb8

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.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@v5
35+
uses: actions/upload-artifact@v6
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@v5
74+
uses: actions/upload-artifact@v6
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@v5
118+
uses: actions/upload-artifact@v6
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@v6
133+
uses: actions/download-artifact@v7
134134
with:
135135
name: typedoc
136136
path: docs/js/
137137
- name: Download Sphinx doc artifact
138-
uses: actions/download-artifact@v6
138+
uses: actions/download-artifact@v7
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
@@ -62,7 +62,7 @@ jobs:
6262
run: yarn install
6363

6464
- name: Download all artifacts
65-
uses: actions/download-artifact@v6
65+
uses: actions/download-artifact@v7
6666
with:
6767
path: artifacts
6868

.github/workflows/node-test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
if: ${{ !matrix.settings.docker }}
159159
shell: bash
160160
- name: Upload artifact
161-
uses: actions/upload-artifact@v5
161+
uses: actions/upload-artifact@v6
162162
with:
163163
name: bindings-${{ matrix.settings.target }}
164164
path: impit-node/${{ env.APP_NAME }}.*.node
@@ -201,7 +201,7 @@ jobs:
201201
- name: Install dependencies
202202
run: yarn --cwd impit-node install
203203
- name: Download artifacts
204-
uses: actions/download-artifact@v6
204+
uses: actions/download-artifact@v7
205205
with:
206206
name: bindings-${{ matrix.settings.target }}
207207
path: impit-node
@@ -243,7 +243,7 @@ jobs:
243243
- name: Install dependencies
244244
run: yarn --cwd impit-node install
245245
- name: Download artifacts
246-
uses: actions/download-artifact@v6
246+
uses: actions/download-artifact@v7
247247
with:
248248
name: bindings-x86_64-unknown-linux-gnu
249249
path: impit-node
@@ -285,7 +285,7 @@ jobs:
285285
- name: Install dependencies
286286
run: yarn --cwd impit-node install
287287
- name: Download artifacts
288-
uses: actions/download-artifact@v6
288+
uses: actions/download-artifact@v7
289289
with:
290290
name: bindings-aarch64-unknown-linux-gnu
291291
path: impit-node
@@ -327,7 +327,7 @@ jobs:
327327
cache-dependency-path: impit-node/yarn.lock
328328

329329
- name: Download artifacts
330-
uses: actions/download-artifact@v6
330+
uses: actions/download-artifact@v7
331331
with:
332332
name: bindings-aarch64-unknown-linux-musl
333333
path: impit-node
@@ -368,7 +368,7 @@ jobs:
368368
cache-dependency-path: impit-node/yarn.lock
369369

370370
- name: Download artifacts
371-
uses: actions/download-artifact@v6
371+
uses: actions/download-artifact@v7
372372
with:
373373
name: bindings-x86_64-unknown-linux-musl
374374
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@v6
86+
uses: actions/download-artifact@v7
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@v5
97+
uses: actions/upload-artifact@v6
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@v6
127+
uses: actions/download-artifact@v7
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@v5
182+
uses: actions/upload-artifact@v6
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@v5
259+
uses: actions/upload-artifact@v6
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@v5
314+
uses: actions/upload-artifact@v6
315315
with:
316316
name: wheels-macos-${{ matrix.platform.target }}
317317
path: impit-python/dist

0 commit comments

Comments
 (0)