Skip to content

Commit 169e777

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] <[email protected]>
1 parent 1feeed1 commit 169e777

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
run: |
4040
jb build lectures --path-output ./ -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
4646
path: _build/html/reports
4747
- name: Upload "_build" folder (cache)
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v5
4949
with:
5050
name: build-cache
5151
path: _build

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
run: |
6363
jb build lectures --path-output ./ -n -W --keep-going
6464
- name: Upload build folder
65-
uses: actions/upload-artifact@v4
65+
uses: actions/upload-artifact@v5
6666
if: failure()
6767
with:
6868
name: _build
6969
path: _build/
7070
- name: Upload Execution Reports
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v5
7272
if: failure()
7373
with:
7474
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/publish.yml

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

0 commit comments

Comments
 (0)