Skip to content

Commit 07e2791

Browse files
committed
Updated workflows to use the v4 of artifact actions
1 parent 4af8b5a commit 07e2791

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/automaticBuilding.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
echo "::set-output name=VERSION::${VERSION#v}"
7272
7373
- name: Archive Windows
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: windows-built
7777
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-win.exe
@@ -146,7 +146,7 @@ jobs:
146146
VERSION: ${{ steps.get-tag.outputs.VERSION }}
147147

148148
- name: Archive Linux
149-
uses: actions/upload-artifact@v3
149+
uses: actions/upload-artifact@v4
150150
with:
151151
name: linux-built-ubuntu
152152
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-ubuntu.deb
@@ -274,7 +274,7 @@ jobs:
274274
echo "::set-output name=VERSION::${VERSION#v}"
275275
276276
- name: Archive Mac
277-
uses: actions/upload-artifact@v3
277+
uses: actions/upload-artifact@v4
278278
with:
279279
name: mac-built
280280
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-mac.pkg
@@ -290,17 +290,17 @@ jobs:
290290
uses: actions/checkout@v4
291291

292292
- name: Download Windows
293-
uses: actions/download-artifact@v3
293+
uses: actions/download-artifact@v4
294294
with:
295295
name: windows-built
296296

297297
- name: Download Linux Ubuntu
298-
uses: actions/download-artifact@v3
298+
uses: actions/download-artifact@v4
299299
with:
300300
name: linux-built-ubuntu
301301

302302
- name: Download Mac
303-
uses: actions/download-artifact@v3
303+
uses: actions/download-artifact@v4
304304
with:
305305
name: mac-built
306306

.github/workflows/automaticBuildingLinux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
VERSION: ${{ steps.get-tag.outputs.VERSION }}
6262

6363
- name: Archive Linux
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
with:
6666
name: linux-built-ubuntu
6767
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-ubuntu.deb
@@ -77,7 +77,7 @@ jobs:
7777
uses: actions/checkout@v4
7878

7979
- name: Download Linux Ubuntu
80-
uses: actions/download-artifact@v3
80+
uses: actions/download-artifact@v4
8181
with:
8282
name: linux-built-ubuntu
8383

.github/workflows/automaticBuildingMac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
echo "::set-output name=VERSION::${VERSION#m}"
114114
115115
- name: Archive Mac
116-
uses: actions/upload-artifact@v3
116+
uses: actions/upload-artifact@v4
117117
with:
118118
name: mac-built
119119
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-mac.dmg
@@ -129,7 +129,7 @@ jobs:
129129
uses: actions/checkout@v4
130130

131131
- name: Download Mac
132-
uses: actions/download-artifact@v3
132+
uses: actions/download-artifact@v4
133133
with:
134134
name: mac-built
135135

.github/workflows/automaticBuildingWin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
echo "::set-output name=VERSION::${VERSION#w}"
5858
5959
- name: Archive Windows
60-
uses: actions/upload-artifact@v3
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: windows-built
6363
path: ./build/dist/MEDomicsLab-${{ env.VERSION }}-win.exe
@@ -73,7 +73,7 @@ jobs:
7373
uses: actions/checkout@v4
7474

7575
- name: Download Windows
76-
uses: actions/download-artifact@v3
76+
uses: actions/download-artifact@v4
7777
with:
7878
name: windows-built
7979

0 commit comments

Comments
 (0)