Skip to content

Commit dd1db58

Browse files
authored
Update to actions/upload-artifact@v4 to fix deprecation failures (#160)
1 parent da71038 commit dd1db58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/godot-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cd $PROJECT_PATH
3333
godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe"
3434
- name: Upload Artifact
35-
uses: actions/upload-artifact@v1
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: windows
3838
path: build/windows
@@ -58,7 +58,7 @@ jobs:
5858
cd $PROJECT_PATH
5959
godot --headless --verbose --export-release "Linux" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
6060
- name: Upload Artifact
61-
uses: actions/upload-artifact@v1
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: linux
6464
path: build/linux
@@ -84,7 +84,7 @@ jobs:
8484
cd $PROJECT_PATH
8585
godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html"
8686
- name: Upload Artifact
87-
uses: actions/upload-artifact@v1
87+
uses: actions/upload-artifact@v4
8888
with:
8989
name: web
9090
path: build/web
@@ -118,7 +118,7 @@ jobs:
118118
cd $PROJECT_PATH
119119
godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip"
120120
- name: Upload Artifact
121-
uses: actions/upload-artifact@v1
121+
uses: actions/upload-artifact@v4
122122
with:
123123
name: mac
124124
path: build/mac

0 commit comments

Comments
 (0)