Skip to content

Commit 7555806

Browse files
⬆️ Bump actions/upload-artifact from 4 to 5 (#420)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4b6f6cd commit 7555806

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
run: |
2424
jb build lectures --path-output ./ -W --keep-going
2525
- name: Upload Execution Reports
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v5
2727
if: failure()
2828
with:
2929
name: execution-reports
3030
path: _build/html/reports
3131
- name: Upload "_build" folder (cache)
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@v5
3333
with:
3434
name: build-cache
3535
path: _build

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
jb build lectures --path-output ./ -n -W --keep-going
6161
- name: Upload Execution Reports
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v5
6363
if: failure()
6464
with:
6565
name: execution-reports

.github/workflows/execution-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
shell: bash -l {0}
3333
run: jb build lectures --path-output=./ -W --keep-going
3434
- name: Upload Execution Reports
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v5
3636
if: failure()
3737
with:
3838
name: execution-reports

.github/workflows/execution-osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
shell: bash -l {0}
3333
run: jb build lectures --path-output=./ -W --keep-going
3434
- name: Upload Execution Reports
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v5
3636
if: failure()
3737
with:
3838
name: execution-reports

.github/workflows/execution-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
shell: powershell
3838
run: jb build lectures --path-output=./ -W --keep-going
3939
- name: Upload Execution Reports
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v5
4141
if: failure()
4242
with:
4343
name: execution-reports

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: |
6262
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
6363
zip -r download-notebooks.zip _build/jupyter
64-
- uses: actions/upload-artifact@v4
64+
- uses: actions/upload-artifact@v5
6565
with:
6666
name: download-notebooks
6767
path: download-notebooks.zip

0 commit comments

Comments
 (0)