diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d52d725f97c0d..3c5aa520418cd 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -139,7 +139,7 @@ jobs: # Skip repair on MacOS CIBW_REPAIR_WHEEL_COMMAND_MACOS: "" - name: "Upload python wheels" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: wheel_${{ matrix.os_name }}_${{ steps.stringify_workflow.outputs.stringified_value }}-${{ github.run_number }} path: flink-python/dist/** diff --git a/.github/workflows/template.flink-ci.yml b/.github/workflows/template.flink-ci.yml index ef4630915fa6b..44a68ff678809 100644 --- a/.github/workflows/template.flink-ci.yml +++ b/.github/workflows/template.flink-ci.yml @@ -115,7 +115,7 @@ jobs: ./tools/azure-pipelines/create_build_artifact.sh - name: "Upload artifacts to make them available in downstream jobs" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: build-artifacts-${{ steps.workflow-prep-step.outputs.stringified_value }}-${{ github.run_number }} path: ${{ env.FLINK_ARTIFACT_DIR }}/${{ env.FLINK_ARTIFACT_FILENAME }} @@ -265,7 +265,7 @@ jobs: run: find ${{ steps.test-run.outputs.debug-files-output-dir }} -type f -exec rename 's/[:<>|*?]/-/' {} \; - name: "Upload build artifacts" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: ${{ failure() && steps.test-run.outputs.debug-files-output-dir }} != '' with: name: logs-test-${{ needs.compile.outputs.stringified-workflow-name }}-${{ github.run_number }}-${{ matrix.stringified-module-name }}-${{ steps.test-run.outputs.debug-files-name }} @@ -384,7 +384,7 @@ jobs: flink-end-to-end-tests/run-nightly-tests.sh ${{ matrix.group }} - name: "Upload Logs" - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: ${{ failure() && steps.test-run.outputs.debug-files-output-dir != '' }} with: name: logs-e2e-${{ needs.compile.outputs.stringified-workflow-name }}-${{ github.run_number }}-${{ matrix.group }}-${{ steps.test-run.outputs.debug-files-name }}