Skip to content

Commit a58ba79

Browse files
⬆️ Bump actions/upload-artifact from 4 to 5
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] <support@github.com>
1 parent 7c4508c commit a58ba79

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
run: |
3636
jb build lectures --path-output ./ -W --keep-going
3737
- name: Upload Execution Reports
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
if: failure()
4040
with:
4141
name: execution-reports
4242
path: _build/html/reports
4343
- name: Upload "_build" folder (cache)
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v5
4545
with:
4646
name: build-cache
4747
path: _build

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
mkdir -p _build/html/_notebooks
5050
cp -u _build/jupyter/*.ipynb _build/html/_notebooks
5151
- name: Upload Execution Reports (Download Notebooks)
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v5
5353
if: failure()
5454
with:
5555
name: execution-reports
@@ -61,7 +61,7 @@ jobs:
6161
mkdir -p _build/html/_pdf
6262
cp -u _build/latex/*.pdf _build/html/_pdf
6363
- name: Upload Execution Reports (LaTeX)
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v5
6565
if: failure()
6666
with:
6767
name: execution-reports
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
jb build lectures --path-output ./ -n -W --keep-going
7474
- name: Upload Execution Reports (HTML)
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
if: failure()
7777
with:
7878
name: execution-reports

.github/workflows/collab.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
jb build lectures --path-output ./ -n -W --keep-going
4141
- name: Upload Execution Reports
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
if: failure()
4444
with:
4545
name: execution-reports

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
shell: bash -l {0}
3838
run: jb build lectures --path-output=./ --builder=custom --custom-builder=linkcheck
3939
- name: Upload Link Checker Reports
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v5
4141
if: failure()
4242
with:
4343
name: linkcheck-reports

.github/workflows/publish.yml

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

0 commit comments

Comments
 (0)