Skip to content

Commit 1cea394

Browse files
committed
update version numbers in github workflows
1 parent 3db12ea commit 1cea394

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.github/workflows/ci.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,15 @@ jobs:
6161
shell: bash -l {0}
6262
run: |
6363
rm -r _build/.doctrees
64-
jb build lectures --path-output ./
64+
jb build lectures --path-output ./ -nW --keep-going
65+
- name: Upload Execution Reports (Download Notebooks)
66+
uses: actions/upload-artifact@v4
67+
if: failure()
68+
with:
69+
name: execution-reports
70+
path: _build/jupyter/reports
6571
- name: Save Build as Artifact
66-
uses: actions/upload-artifact@v1
72+
uses: actions/upload-artifact@v4
6773
with:
6874
name: _build
6975
path: _build

.github/workflows/execution.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
18-
- uses: conda-incubator/setup-miniconda@v3
18+
- uses: conda-incubator/setup-miniconda@v2
1919
with:
2020
auto-update-conda: true
2121
python-version: ${{ matrix.python-version }}

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
shell: bash -l {0}
4040
run: pip list
4141
- name: Download "build" folder (cache)
42-
uses: dawidd6/action-download-artifact@v3
42+
uses: dawidd6/action-download-artifact@v4
4343
with:
4444
workflow: cache.yml
4545
branch: main
@@ -79,7 +79,7 @@ jobs:
7979
publish_dir: _build/html/
8080
cname: python-advanced.quantecon.org
8181
- name: Upload "_build" folder (cache)
82-
uses: actions/upload-artifact@v2
82+
uses: actions/upload-artifact@v4
8383
with:
8484
name: build-cache
8585
path: _build

0 commit comments

Comments
 (0)