Skip to content

Commit 3cccf2b

Browse files
⬆️ Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3ec1101 commit 3cccf2b

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
@@ -33,13 +33,13 @@ jobs:
3333
run: |
3434
jb build lectures --path-output ./ -W --keep-going
3535
- name: Upload Execution Reports
36-
uses: actions/upload-artifact@v5
36+
uses: actions/upload-artifact@v6
3737
if: failure()
3838
with:
3939
name: execution-reports
4040
path: _build/html/reports
4141
- name: Upload "_build" folder (cache)
42-
uses: actions/upload-artifact@v5
42+
uses: actions/upload-artifact@v6
4343
with:
4444
name: build-cache
4545
path: _build

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
jb build lectures --path-output ./ -n -W --keep-going
7272
- name: Upload Execution Reports
73-
uses: actions/upload-artifact@v5
73+
uses: actions/upload-artifact@v6
7474
if: failure()
7575
with:
7676
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@v5
35+
uses: actions/upload-artifact@v6
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@v5
35+
uses: actions/upload-artifact@v6
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@v5
40+
uses: actions/upload-artifact@v6
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
@@ -73,7 +73,7 @@ jobs:
7373
run: |
7474
jb build lectures --path-output ./ --builder=custom --custom-builder=jupyter -n -W --keep-going
7575
zip -r download-notebooks.zip _build/jupyter
76-
- uses: actions/upload-artifact@v5
76+
- uses: actions/upload-artifact@v6
7777
with:
7878
name: download-notebooks
7979
path: download-notebooks.zip

0 commit comments

Comments
 (0)