Skip to content

Commit dbcedb2

Browse files
committed
ci: update artifact actions to v4 (upload/download-artifact) to avoid deprecated v3 usage
1 parent 71339a3 commit dbcedb2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/Deploy-internal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: |
4949
bash .github/workflows/build_tutorial.sh ${{ matrix.tutorial }}
5050
- name: Upload artifact
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
path: markdown/*
5454

@@ -62,7 +62,7 @@ jobs:
6262
wget https://github.com/JuliaSmoothOptimizers/JSOTutorials.jl/archive/refs/heads/gh-pages.zip
6363
unzip gh-pages.zip
6464
- name: Download artifact
65-
uses: actions/download-artifact@v3
65+
uses: actions/download-artifact@v4
6666
with:
6767
path: .
6868
- name: list

.github/workflows/Deploy-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
bash .github/workflows/build_tutorial.sh ${{ matrix.tutorial }}
5959
- name: Upload artifact
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
path: parsed/*
6363

@@ -70,7 +70,7 @@ jobs:
7070
BRANCH: 'jsotutorials-${{ github.event_name }}-${{ github.sha }}'
7171
steps:
7272
- name: Download artifact
73-
uses: actions/download-artifact@v3
73+
uses: actions/download-artifact@v4
7474
with:
7575
path: .
7676
- name: list

0 commit comments

Comments
 (0)