Skip to content

Commit 9619817

Browse files
committed
Update upload-artifact to v4
1 parent ab8fc43 commit 9619817

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.github/workflows/android_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
$ANDROID_NDK_ROOT/ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=Android.mk APP_PLATFORM=android-21 NDK_LIBS_OUT=./${{env.TARGET_PATH}}
6666
6767
- name: Upload Artifact
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: android
7171
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}

.github/workflows/ios_builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
cp godot-cpp/bin/libgodot-cpp.ios.release.armv7.a ${{env.TARGET_PATH}}/armv7/libgodot-cpp.ios.release.armv7.a
5555
5656
- name: Upload Artifact
57-
uses: actions/upload-artifact@v3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: ios
6060
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}

.github/workflows/javascript_builds.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,13 @@ jobs:
6363
scons platform=javascript target=${{env.TARGET}} target_path=${{env.TARGET_PATH}} target_name=${{env.TARGET_NAME}}
6464
6565
- name: Upload Artifact
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: javascript
6969
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}
7070

7171
javascript-deploy:
72+
if: false
7273
name: Javascript Deploy
7374
runs-on: ubuntu-latest
7475
needs: [javascript-compilation]
@@ -100,7 +101,7 @@ jobs:
100101
godot -v --export "HTML5" ../build/web/index.html
101102
102103
- name: Upload Artifact
103-
uses: actions/upload-artifact@v3
104+
uses: actions/upload-artifact@v4
104105
with:
105106
name: web
106107
path: build/web

.github/workflows/linux_builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
scons platform=linux target=${{env.TARGET}} target_path=${{env.TARGET_PATH}} target_name=${{env.TARGET_NAME}}
5656
5757
- name: Upload Artifact
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: x11
6161
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}
@@ -105,7 +105,7 @@ jobs:
105105
scons platform=linux target=${{env.TARGET}} target_path=${{env.TARGET_PATH}} target_name=${{env.TARGET_NAME}}
106106
107107
- name: Upload Artifact
108-
uses: actions/upload-artifact@v3
108+
uses: actions/upload-artifact@v4
109109
with:
110110
name: x11-legacy
111111
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}

.github/workflows/macos_builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
jobs:
1414
macos-compilation:
1515
name: MacOS Compilation
16-
runs-on: "macos-11"
16+
runs-on: "macos-latest"
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
@@ -48,7 +48,7 @@ jobs:
4848
scons platform=osx target=${{env.TARGET}} target_path=${{env.TARGET_PATH}} target_name=${{env.TARGET_NAME}}
4949
5050
- name: Upload Artifact
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: osx
5454
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}

.github/workflows/windows_builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
scons platform=windows target=${{env.TARGET}} target_path=${{env.TARGET_PATH}} target_name=${{env.TARGET_NAME}}
5252
5353
- name: Upload Artifact
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: win64
5757
path: ${{env.PROJECT_FOLDER}}\${{env.TARGET_PATH}}
@@ -101,7 +101,7 @@ jobs:
101101
scons platform=windows target=${{env.TARGET}} target_path=${{env.TARGET_PATH}} target_name=${{env.TARGET_NAME}}.dll
102102
103103
- name: Upload Artifact
104-
uses: actions/upload-artifact@v3
104+
uses: actions/upload-artifact@v4
105105
with:
106106
name: win64-cross
107107
path: ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}}

0 commit comments

Comments
 (0)