Skip to content

Commit 6b1c319

Browse files
⬆️ Bump actions/upload-artifact from 6 to 7 (#818)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ce54324 commit 6b1c319

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.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@v6
38+
uses: actions/upload-artifact@v7
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@v6
44+
uses: actions/upload-artifact@v7
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
@@ -58,7 +58,7 @@ jobs:
5858
mkdir -p _build/html/_notebooks
5959
cp -u _build/jupyter/*.ipynb _build/html/_notebooks
6060
- name: Upload Execution Reports (Download Notebooks)
61-
uses: actions/upload-artifact@v6
61+
uses: actions/upload-artifact@v7
6262
if: failure()
6363
with:
6464
name: execution-reports-notebooks
@@ -70,7 +70,7 @@ jobs:
7070
mkdir -p _build/html/_pdf
7171
cp -u _build/latex/*.pdf _build/html/_pdf
7272
- name: Upload Execution Reports (LaTeX)
73-
uses: actions/upload-artifact@v6
73+
uses: actions/upload-artifact@v7
7474
if: failure()
7575
with:
7676
name: execution-reports-latex
@@ -81,7 +81,7 @@ jobs:
8181
run: |
8282
jb build lectures --path-output ./ -n -W --keep-going
8383
- name: Upload Execution Reports (HTML)
84-
uses: actions/upload-artifact@v6
84+
uses: actions/upload-artifact@v7
8585
if: failure()
8686
with:
8787
name: execution-reports-html

.github/workflows/collab.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
jb build lectures --path-output ./ -n -W --keep-going
4747
- name: Upload Execution Reports
48-
uses: actions/upload-artifact@v6
48+
uses: actions/upload-artifact@v7
4949
if: failure()
5050
with:
5151
name: execution-reports

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
jb build lectures --builder pdflatex --path-output ./ -n -W --keep-going
5353
- name: Upload Execution Reports (LaTeX)
54-
uses: actions/upload-artifact@v6
54+
uses: actions/upload-artifact@v7
5555
if: failure()
5656
with:
5757
name: execution-reports-latex
@@ -67,12 +67,12 @@ jobs:
6767
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
6868
zip -r download-notebooks.zip _build/jupyter
6969
- name: Upload Execution Reports (Download Notebooks)
70-
uses: actions/upload-artifact@v6
70+
uses: actions/upload-artifact@v7
7171
if: failure()
7272
with:
7373
name: execution-reports-notebooks
7474
path: _build/jupyter/reports
75-
- uses: actions/upload-artifact@v6
75+
- uses: actions/upload-artifact@v7
7676
with:
7777
name: download-notebooks
7878
path: download-notebooks.zip
@@ -87,7 +87,7 @@ jobs:
8787
run: |
8888
jb build lectures --path-output ./ -n -W --keep-going
8989
- name: Upload Execution Reports (HTML)
90-
uses: actions/upload-artifact@v6
90+
uses: actions/upload-artifact@v7
9191
if: failure()
9292
with:
9393
name: execution-reports-html

0 commit comments

Comments
 (0)