Skip to content

Commit 3725a2e

Browse files
committed
Update versions for all actions
1 parent 21aa4c7 commit 3725a2e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/build.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3.1.0
29+
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 0
3232

3333
- name: Setup dotnet
34-
uses: actions/setup-dotnet@v3
34+
uses: actions/setup-dotnet@v4
3535
with:
3636
dotnet-version: 2.2.108
3737
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
@@ -56,7 +56,7 @@ jobs:
5656
run: dotnet pack -c Release -p:PackageVersion=1.0.0.0
5757

5858
- name: Upload windows artifact
59-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: nuget
6262
path: ./BrainAI/bin/Release/BrainAI.*.nupkg
@@ -68,12 +68,12 @@ jobs:
6868
name: Build artifacts
6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@v3.1.0
71+
uses: actions/checkout@v4
7272
with:
7373
fetch-depth: 0
7474

7575
- name: Setup dotnet
76-
uses: actions/setup-dotnet@v3
76+
uses: actions/setup-dotnet@v4
7777
with:
7878
dotnet-version: 2.2.108
7979
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: Export game
8888
id: export
89-
uses: firebelley/godot-export@v4.4.0
89+
uses: firebelley/godot-export@v5.2.0
9090
with:
9191
godot_executable_download_url: https://downloads.tuxfamily.org/godotengine/3.5.1/mono/Godot_v3.5.1-stable_mono_linux_headless_64.zip
9292
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:
111111
runs-on: ubuntu-latest
112112
steps:
113113
- name: Setup Pages
114-
uses: actions/configure-pages@v2
114+
uses: actions/configure-pages@v5
115115
- name: Deploy to GitHub Pages
116116
id: deployment
117-
uses: actions/deploy-pages@v1
117+
uses: actions/deploy-pages@v4
118118

119119
pack:
120120
needs: build
@@ -123,13 +123,13 @@ jobs:
123123
if: startsWith(github.ref, 'refs/tags/v')
124124
steps:
125125
- name: Download artifact
126-
uses: actions/download-artifact@v3
126+
uses: actions/download-artifact@v4
127127
with:
128128
name: nuget
129129
path: ./artifacts
130130

131131
- name: Setup nuget
132-
uses: nuget/setup-nuget@v1
132+
uses: nuget/setup-nuget@v2
133133
with:
134134
nuget-version: 'latest'
135135

0 commit comments

Comments
 (0)