Skip to content

Commit 004bdf6

Browse files
⬆️ Bump actions/upload-artifact from 2 to 4 (#411)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact 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 94e1f42 commit 004bdf6

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
run: |
2323
jb build lectures --path-output ./ -W --keep-going
2424
- name: Upload Execution Reports
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4
2626
if: failure()
2727
with:
2828
name: execution-reports
2929
path: _build/html/reports
3030
- name: Upload "_build" folder (cache)
31-
uses: actions/upload-artifact@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
name: build-cache
3434
path: _build

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
mkdir -p _build/html/_notebooks
3636
cp -u _build/jupyter/*.ipynb _build/html/_notebooks
3737
- name: Upload Execution Reports (Download Notebooks)
38-
uses: actions/upload-artifact@v2
38+
uses: actions/upload-artifact@v4
3939
if: failure()
4040
with:
4141
name: execution-reports
@@ -47,7 +47,7 @@ jobs:
4747
mkdir -p _build/html/_pdf
4848
cp -u _build/latex/*.pdf _build/html/_pdf
4949
- name: Upload Execution Reports (LaTeX)
50-
uses: actions/upload-artifact@v2
50+
uses: actions/upload-artifact@v4
5151
if: failure()
5252
with:
5353
name: execution-reports
@@ -58,7 +58,7 @@ jobs:
5858
run: |
5959
jb build lectures --path-output ./ -n -W --keep-going
6060
- name: Upload Execution Reports (HTML)
61-
uses: actions/upload-artifact@v2
61+
uses: actions/upload-artifact@v4
6262
if: failure()
6363
with:
6464
name: execution-reports

.github/workflows/execution.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
shell: bash -l {0}
4242
run: jb build lectures --path-output=./ -W --keep-going
4343
- name: Upload Execution Reports
44-
uses: actions/upload-artifact@v2
44+
uses: actions/upload-artifact@v4
4545
if: failure()
4646
with:
4747
name: execution-reports
@@ -74,7 +74,7 @@ jobs:
7474
shell: bash -l {0}
7575
run: jb build lectures --path-output=./ -W --keep-going
7676
- name: Upload Execution Reports
77-
uses: actions/upload-artifact@v2
77+
uses: actions/upload-artifact@v4
7878
if: failure()
7979
with:
8080
name: execution-reports
@@ -104,7 +104,7 @@ jobs:
104104
# shell: powershell
105105
# run: jb build lectures --path-output=./ -W --keep-going
106106
# - name: Upload Execution Reports
107-
# uses: actions/upload-artifact@v2
107+
# uses: actions/upload-artifact@v4
108108
# if: failure()
109109
# with:
110110
# 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@v2
40+
uses: actions/upload-artifact@v4
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
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
5151
zip -r download-notebooks.zip _build/jupyter
52-
- uses: actions/upload-artifact@v2
52+
- uses: actions/upload-artifact@v4
5353
with:
5454
name: download-notebooks
5555
path: download-notebooks.zip

0 commit comments

Comments
 (0)