Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/job_init/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ runs:

- name: "Setup Maven package cache"
if: ${{ inputs.maven_repo_folder != '' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ inputs.maven_repo_folder }}
key: ${{ runner.os }}-ns-${{ steps.cache-ns.outputs.namespace }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.run_id }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
os_name: macos
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -119,7 +119,7 @@ jobs:
value: ${{ github.workflow }}
# Used to host cibuildwheel
- name: "Setup Python"
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'
- name: "Install cibuildwheel"
Expand All @@ -139,7 +139,7 @@ jobs:
# Skip repair on MacOS
CIBW_REPAIR_WHEEL_COMMAND_MACOS: ""
- name: "Upload python wheels"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheel_${{ matrix.os_name }}_${{ steps.stringify_workflow.outputs.stringified_value }}-${{ github.run_number }}
path: flink-python/dist/**
28 changes: 14 additions & 14 deletions .github/workflows/template.flink-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
stringified-workflow-name: ${{ steps.workflow-prep-step.outputs.stringified_value }}
steps:
- name: "Flink Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false

Expand Down Expand Up @@ -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@v4
uses: actions/upload-artifact@v5
with:
name: build-artifacts-${{ steps.workflow-prep-step.outputs.stringified_value }}-${{ github.run_number }}
path: ${{ env.FLINK_ARTIFACT_DIR }}/${{ env.FLINK_ARTIFACT_FILENAME }}
Expand All @@ -135,7 +135,7 @@ jobs:

steps:
- name: "Flink Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false

Expand All @@ -148,7 +148,7 @@ jobs:
target_directory: ${{ env.CONTAINER_LOCAL_WORKING_DIR }}

- name: "Download build artifacts from compile job"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: build-artifacts-${{ needs.compile.outputs.stringified-workflow-name }}-${{ github.run_number }}
path: ${{ env.FLINK_ARTIFACT_DIR }}
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

steps:
- name: "Flink Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false

Expand All @@ -214,7 +214,7 @@ jobs:
run: sudo sysctl -w kernel.core_pattern=core.%p

- name: "Download build artifacts from compile job"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: build-artifacts-${{ needs.compile.outputs.stringified-workflow-name }}-${{ github.run_number }}
path: ${{ env.FLINK_ARTIFACT_DIR }}
Expand All @@ -226,7 +226,7 @@ jobs:

- name: "Try loading Docker images from Cache"
id: docker-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.DOCKER_IMAGES_CACHE_FOLDER }}
key: ${{ matrix.module }}-docker-${{ runner.os }}-${{ hashFiles('**/cache_docker_images.sh', '**/flink-test-utils-parent/**/DockerImageVersions.java') }}
Expand Down Expand Up @@ -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@v4
uses: actions/upload-artifact@v5
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 }}
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:

steps:
- name: "Flink Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false

Expand All @@ -326,7 +326,7 @@ jobs:
sudo apt install ./libssl1.0.0_*.deb

- name: "Download build artifacts from compile job"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: build-artifacts-${{ needs.compile.outputs.stringified-workflow-name }}-${{ github.run_number }}
path: ${{ env.FLINK_ARTIFACT_DIR }}
Expand All @@ -343,21 +343,21 @@ jobs:
mkdir -p ${{ env.DOCKER_IMAGES_CACHE_FOLDER }}

- name: "Load E2E files from Cache"
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.E2E_CACHE_FOLDER }}
key: e2e-cache-${{ matrix.group }}-${{ hashFiles('**/flink-end-to-end-tests/**/*.java', '!**/avro/**') }}

- name: "Load E2E artifacts from Cache"
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.E2E_TARBALL_CACHE }}
key: e2e-artifact-cache-${{ matrix.group }}-${{ hashFiles('**/flink-end-to-end-tests/**/*.sh') }}
restore-keys: e2e-artifact-cache-${{ matrix.group }}

- name: "Try loading Docker images from Cache"
id: docker-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.DOCKER_IMAGES_CACHE_FOLDER }}
key: e2e-${{ matrix.group }}-docker-${{ runner.os }}-${{ hashFiles('**/cache_docker_images.sh', '**/flink-test-utils-parent/**/DockerImageVersions.java') }}
Expand All @@ -384,7 +384,7 @@ jobs:
flink-end-to-end-tests/run-nightly-tests.sh ${{ matrix.group }}

- name: "Upload Logs"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template.pre-compile-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

steps:
- name: "Flink Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: false

Expand Down