Skip to content

Commit 6f8680c

Browse files
Bump the actions group with 2 updates (#7207)
* Bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * Bump to `actions/upload-artifact@v4` --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jeremy Tuloup <[email protected]>
1 parent 9a98743 commit 6f8680c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/actions/build-dist/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ runs:
3232
sha256sum * | tee SHA256SUMS
3333
3434
- name: Upload distributions
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: notebook-dist-${{ github.run_number }}
3838
path: ./dist
3939

4040
- name: Upload distributions
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
4343
name: notebook-pkgs-${{ github.run_number }}
4444
path: ./pkgs

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
python-version: ${{ matrix.python }}
144144
architecture: 'x64'
145145
allow-prereleases: true
146-
- uses: actions/download-artifact@v3
146+
- uses: actions/download-artifact@v4
147147
with:
148148
name: notebook-dist-${{ github.run_number }}
149149
path: ./dist

.github/workflows/check-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
version_spec: next
2828

2929
- name: Upload Distributions
30-
uses: actions/upload-artifact@v3
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: notebook-jupyter-releaser-dist-${{ github.run_number }}
3333
path: .jupyter_releaser_checkout/dist

.github/workflows/playwright-update.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Build
4646
uses: ./.github/actions/build-dist
4747

48-
- uses: actions/download-artifact@v3
48+
- uses: actions/download-artifact@v4
4949
with:
5050
name: notebook-dist-${{ github.run_number }}
5151
path: ./dist

.github/workflows/ui-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Base Setup
4040
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
4141

42-
- uses: actions/download-artifact@v3
42+
- uses: actions/download-artifact@v4
4343
with:
4444
name: notebook-dist-${{ github.run_number }}
4545
path: ./dist
@@ -62,15 +62,15 @@ jobs:
6262
6363
- name: Upload Playwright Test assets
6464
if: always()
65-
uses: actions/upload-artifact@v3
65+
uses: actions/upload-artifact@v4
6666
with:
6767
name: notebook-${{ matrix.browser }}-test-assets
6868
path: |
6969
ui-tests/test-results
7070
7171
- name: Upload Playwright Test report
7272
if: always()
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: notebook-${{ matrix.browser }}-test-report
7676
path: |
@@ -87,7 +87,7 @@ jobs:
8787
8888
- name: Upload updated snapshots
8989
if: failure()
90-
uses: actions/upload-artifact@v3
90+
uses: actions/upload-artifact@v4
9191
with:
9292
name: notebook-${{ matrix.browser }}-updated-snapshots
9393
path: ui-tests/test

0 commit comments

Comments
 (0)