@@ -14,10 +14,10 @@ jobs:
14
14
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
19
19
- name : Install .NET Core
20
- uses : actions/setup-dotnet@v3
20
+ uses : actions/setup-dotnet@v4
21
21
with :
22
22
dotnet-version : 8.0.x
23
23
31
31
run : dotnet publish Audio.GUI.Desktop -c Release -r win-x64
32
32
33
33
- name : Upload build artifacts
34
- uses : actions/upload-artifact@v3
34
+ uses : actions/upload-artifact@v4
35
35
with :
36
36
name : net8.0_windows-${{ github.sha }}
37
37
path : |
@@ -43,10 +43,10 @@ jobs:
43
43
44
44
steps :
45
45
- name : Checkout
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v4
47
47
48
48
- name : Install .NET Core
49
- uses : actions/setup-dotnet@v3
49
+ uses : actions/setup-dotnet@v4
50
50
with :
51
51
dotnet-version : 8.0.x
52
52
60
60
run : dotnet publish Audio.GUI.Desktop -c Release -r linux-x64
61
61
62
62
- name : Upload build artifacts
63
- uses : actions/upload-artifact@v3
63
+ uses : actions/upload-artifact@v4
64
64
with :
65
65
name : net8.0_linux-${{ github.sha }}
66
66
path : |
@@ -72,10 +72,10 @@ jobs:
72
72
73
73
steps :
74
74
- name : Checkout
75
- uses : actions/checkout@v3
75
+ uses : actions/checkout@v4
76
76
77
77
- name : Install .NET Core
78
- uses : actions/setup-dotnet@v3
78
+ uses : actions/setup-dotnet@v4
79
79
with :
80
80
dotnet-version : 8.0.x
81
81
89
89
run : dotnet publish Audio.GUI.Desktop -c Release -r osx-x64
90
90
91
91
- name : Upload build artifacts
92
- uses : actions/upload-artifact@v3
92
+ uses : actions/upload-artifact@v4
93
93
with :
94
94
name : net8.0_osx-${{ github.sha }}
95
95
path : |
0 commit comments