diff --git a/.github/workflows/publish_platform.yaml b/.github/workflows/publish_platform.yaml index feafd0e2..1fe8e7ea 100644 --- a/.github/workflows/publish_platform.yaml +++ b/.github/workflows/publish_platform.yaml @@ -80,8 +80,9 @@ jobs: run: | mkdir -p ./workflow_ref echo "${{ env.NEW_BRANCH }}" > ./workflow_ref/ref - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: workflow_ref path: ./workflow_ref/ - retention-days: 30 \ No newline at end of file + retention-days: 30 + overwrite: true \ No newline at end of file diff --git a/.github/workflows/publish_platform_hotfix.yaml b/.github/workflows/publish_platform_hotfix.yaml index d98bbe47..607cf883 100644 --- a/.github/workflows/publish_platform_hotfix.yaml +++ b/.github/workflows/publish_platform_hotfix.yaml @@ -62,8 +62,9 @@ jobs: run: | mkdir -p ./workflow_ref echo "${{ env.NEW_BRANCH }}" > ./workflow_ref/ref - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: workflow_ref path: ./workflow_ref/ - retention-days: 30 \ No newline at end of file + retention-days: 30 + overwrite: true \ No newline at end of file