liuyuqi-dellpc 3 months ago
parent
commit
82ada3900f

+ 1 - 1
android/.github/workflows/main.yml

@@ -66,7 +66,7 @@ jobs:
 
       - name: Upload AAB/APK
         id: uploadArtifact
-        uses: actions/upload-artifact@v1
+        uses: actions/upload-artifact@v4
         with:
           name: artifact
           path: |

+ 6 - 5
build.sh

@@ -83,11 +83,12 @@ yarn config set strict-ssl false
 export PUB_HOSTED_URL=https://pub.flutter-io.cn
 export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
 
-# cd /opt/flutter
-# git checkout 2.0.5 
-# git checkout 3.7.9 
-# git checkout 3.13.8
-# flutter doctor
+cd /opt/flutter
+git checkout 2.0.5 
+git checkout 3.7.9
+git checkout 3.13.8
+git checkout 3.27.1
+flutter doctor
 
 # cd /workspace/flutter_you
 # flutter build apk

+ 1 - 1
docker/.github/workflows/vue_deploy.yml

@@ -38,7 +38,7 @@ jobs:
           npm install
           npn run build
       
-      - uses: actions/upload-artifact@v2
+      - uses: actions/upload-artifact@v4
         with:
           name: distfile
           path: front/dist

+ 0 - 7
docs/ide/coding.md

@@ -62,10 +62,3 @@ cloudstudio 是独立的产品,一般都是基于模板快速新建开发环
 
 coding 提供 ci/cd 服务,可以在项目中配置 ci/cd,自动化构建,测试,部署。
 
-
-
-
-
-
-
-

+ 1 - 1
dotnet/.github/workflows/main.yml

@@ -29,7 +29,7 @@ jobs:
           run: dotnet pack TestLib --configuration Release -o finalpackage --no-build
 
         - name: Publish artifact
-          uses: actions/upload-artifact@master
+          uses: actions/upload-artifact@v4
           with:
             name: nupkg
             path: finalpackage

+ 5 - 5
dotnet/.github/workflows/msbuild.yml

@@ -21,7 +21,7 @@ jobs:
         utcOffset: "+08:00"
       
     - name : Upload artifact
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v4
       with:
         name: x64_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor
         path: |
@@ -29,7 +29,7 @@ jobs:
           Bin/x64/Release/*.dll
 
     - name : Upload pdb files
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v4
       with:
         name: x64_${{ steps.current-time.outputs.formattedTime }}_pdb
         path: Bin/x64/Release/*.pdb
@@ -54,7 +54,7 @@ jobs:
         utcOffset: "+08:00"
       
     - name : Upload artifact
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v4
       with:
         name: x86_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor
         path: |
@@ -62,7 +62,7 @@ jobs:
           Bin/Release/*.dll
       
     - name : Upload pdb files
-      uses: actions/upload-artifact@v2
+      uses: actions/upload-artifact@v4
       with:
         name: x86_${{ steps.current-time.outputs.formattedTime }}_pdb
         path: Bin/Release/*.pdb
@@ -90,7 +90,7 @@ jobs:
         # utcOffset: "+08:00"
       
     # - name : Upload artifact
-      # uses: actions/upload-artifact@v1
+      # uses: actions/upload-artifact@v4
       # with:
         # name: winXP_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor
         # path: Bin/Release/TrafficMonitor.exe

+ 1 - 1
dotnet/.github/workflows/push_to_docker.yml

@@ -28,7 +28,7 @@ jobs:
         
     - run: npm install
     - run: npm run build
-    - uses: actions/upload-artifact@v2
+    - uses: actions/upload-artifact@v4
       with:
         name: agileconfig-ui
         path: AgileConfig.Server.UI/react-ui-antd/dist/

+ 1 - 1
flutter/.github/workflows/android-build.yml

@@ -72,7 +72,7 @@ jobs:
 
       # output some file:
       - name: artifact
-        uses: actions/upload-artifact@v2
+        uses: actions/upload-artifact@v4
         with:
           name: ${{runner.OS}}-artifact
           path: |

+ 1 - 1
flutter/.github/workflows/ios-build.yml

@@ -72,7 +72,7 @@ jobs:
 
       # output some file:
       - name: artifact
-        uses: actions/upload-artifact@v2
+        uses: actions/upload-artifact@v4
         with:
           name: ${{runner.OS}}-artifact
           path: |

+ 1 - 1
flutter/.github/workflows/ios-sign-file.yml

@@ -19,7 +19,7 @@ jobs:
       
       # output some file:
       - name: artifact
-        uses: actions/upload-artifact@v2
+        uses: actions/upload-artifact@v4
         with:
           name: ${{runner.OS}}-artifact
           path: |

+ 1 - 1
flutter/.github/workflows/main.yml

@@ -97,7 +97,7 @@ jobs:
 
       # output some file:
       - name: artifact
-        uses: actions/upload-artifact@v2
+        uses: actions/upload-artifact@v4
         with:
           name: ${{runner.OS}}-artifact
           path: |

+ 1 - 1
flutter/.github/workflows/pc-build.yml

@@ -111,7 +111,7 @@ jobs:
   #     - run: flutter build windows
   #     - run: flutter pub run msix:create
   #     - name: Upload msix
-  #       uses: actions/upload-artifact@v2
+  #       uses: actions/upload-artifact@v4
   #       with:
   #         name: app
   #         path: build/windows/runner/Release/shodana_reader.msix

+ 1 - 1
go/.github/workflows/main.yml

@@ -69,7 +69,7 @@ jobs:
         working-directory: ./server
 
       - name: artifact
-        uses: actions/upload-artifact@v1
+        uses: actions/upload-artifact@v4
         with:
           name: artifact
           path: output

+ 1 - 1
nodejs/.github/react/.github/workflows/main.yml

@@ -30,7 +30,7 @@ jobs:
       working-directory: ./
 
     - name: artifact
-      uses: actions/upload-artifact@v1
+      uses: actions/upload-artifact@v4
       with:
         name: artifact
         path: output

+ 1 - 1
python/.github/workflows/pyinstall_package.yml

@@ -42,7 +42,7 @@ jobs:
           python -m PyInstaller -F -c  -i favicon.ico --name crawl_github main.py
 
       # - name: Upload binary
-      #   uses: actions/upload-artifact@v3
+      #   uses: actions/upload-artifact@v4
       #   with:
       #     name: crawl-tool-${{ steps.get_version.outputs.hash }}
       #     path: |