@@ -26,12 +26,12 @@ jobs:
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- name : Checkout
29
- uses : actions/checkout@v3.1.0
29
+ uses : actions/checkout@v4
30
30
with :
31
31
fetch-depth : 0
32
32
33
33
- name : Setup dotnet
34
- uses : actions/setup-dotnet@v3
34
+ uses : actions/setup-dotnet@v4
35
35
with :
36
36
dotnet-version : 2.2.108
37
37
source-url : https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
56
56
run : dotnet pack -c Release -p:PackageVersion=1.0.0.0
57
57
58
58
- name : Upload windows artifact
59
- uses : actions/upload-artifact@v3
59
+ uses : actions/upload-artifact@v4
60
60
with :
61
61
name : nuget
62
62
path : ./BrainAI/bin/Release/BrainAI.*.nupkg
@@ -68,12 +68,12 @@ jobs:
68
68
name : Build artifacts
69
69
steps :
70
70
- name : Checkout
71
- uses : actions/checkout@v3.1.0
71
+ uses : actions/checkout@v4
72
72
with :
73
73
fetch-depth : 0
74
74
75
75
- name : Setup dotnet
76
- uses : actions/setup-dotnet@v3
76
+ uses : actions/setup-dotnet@v4
77
77
with :
78
78
dotnet-version : 2.2.108
79
79
source-url : https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
86
86
87
87
- name : Export game
88
88
id : export
89
- uses : firebelley/godot-export@v4.4 .0
89
+ uses : firebelley/godot-export@v5.2 .0
90
90
with :
91
91
godot_executable_download_url : https://downloads.tuxfamily.org/godotengine/3.5.1/mono/Godot_v3.5.1-stable_mono_linux_headless_64.zip
92
92
godot_export_templates_download_url : https://downloads.tuxfamily.org/godotengine/3.5.1/mono/Godot_v3.5.1-stable_mono_export_templates.tpz
@@ -111,10 +111,10 @@ jobs:
111
111
runs-on : ubuntu-latest
112
112
steps :
113
113
- name : Setup Pages
114
- uses : actions/configure-pages@v2
114
+ uses : actions/configure-pages@v5
115
115
- name : Deploy to GitHub Pages
116
116
id : deployment
117
- uses : actions/deploy-pages@v1
117
+ uses : actions/deploy-pages@v4
118
118
119
119
pack :
120
120
needs : build
@@ -123,13 +123,13 @@ jobs:
123
123
if : startsWith(github.ref, 'refs/tags/v')
124
124
steps :
125
125
- name : Download artifact
126
- uses : actions/download-artifact@v3
126
+ uses : actions/download-artifact@v4
127
127
with :
128
128
name : nuget
129
129
path : ./artifacts
130
130
131
131
- name : Setup nuget
132
- uses : nuget/setup-nuget@v1
132
+ uses : nuget/setup-nuget@v2
133
133
with :
134
134
nuget-version : ' latest'
135
135
0 commit comments