From 0fbb40e39e51a41ce0be2e090d22f2b344d9ae11 Mon Sep 17 00:00:00 2001 From: David Wood Date: Thu, 3 Oct 2024 12:05:30 -0400 Subject: [PATCH] switch workflows from ubuntu-22.04 to ubuntu-latest to try and avoid excessive job queuing Signed-off-by: David Wood --- .github/workflows/deploy-docs.yml | 2 +- .github/workflows/deploy-library.yml | 6 +++--- .github/workflows/deploy-transforms.yml | 4 ++-- .github/workflows/test-code-code2parquet-kfp.yml | 4 ++-- .github/workflows/test-code-code2parquet.yml | 6 +++--- .github/workflows/test-code-code_quality-kfp.yml | 4 ++-- .github/workflows/test-code-code_quality.yml | 6 +++--- .github/workflows/test-code-header_cleanser-kfp.yml | 4 ++-- .github/workflows/test-code-header_cleanser.yml | 6 +++--- .github/workflows/test-code-license_select-kfp.yml | 4 ++-- .github/workflows/test-code-license_select.yml | 6 +++--- .github/workflows/test-code-malware-kfp.yml | 4 ++-- .github/workflows/test-code-malware.yml | 6 +++--- .github/workflows/test-code-proglang_select-kfp.yml | 4 ++-- .github/workflows/test-code-proglang_select.yml | 6 +++--- .../workflows/test-code-repo_level_ordering-kfp.yml | 4 ++-- .github/workflows/test-code-repo_level_ordering.yml | 6 +++--- .github/workflows/test-kfp-transform.template | 4 ++-- .github/workflows/test-kfp.yml | 8 ++++---- .github/workflows/test-language-doc_chunk.yml | 6 +++--- .github/workflows/test-language-doc_quality-kfp.yml | 4 ++-- .github/workflows/test-language-doc_quality.yml | 6 +++--- .github/workflows/test-language-html2parquet.yml | 6 +++--- .github/workflows/test-language-lang_id-kfp.yml | 4 ++-- .github/workflows/test-language-lang_id.yml | 6 +++--- .github/workflows/test-language-pdf2parquet.yml | 6 +++--- .github/workflows/test-language-pii_redactor.yml | 6 +++--- .github/workflows/test-language-text_encoder-kfp.yml | 4 ++-- .github/workflows/test-language-text_encoder.yml | 6 +++--- .github/workflows/test-lib.yml | 10 +++++----- .github/workflows/test-misc.yml | 4 ++-- .github/workflows/test-packaging-python.yml | 2 +- .github/workflows/test-packaging-ray.yml | 2 +- .github/workflows/test-transform.template | 6 +++--- .github/workflows/test-universal-doc_id-kfp.yml | 4 ++-- .github/workflows/test-universal-doc_id.yml | 6 +++--- .github/workflows/test-universal-ededup-kfp.yml | 4 ++-- .github/workflows/test-universal-ededup.yml | 6 +++--- .github/workflows/test-universal-fdedup-kfp.yml | 4 ++-- .github/workflows/test-universal-fdedup.yml | 6 +++--- .github/workflows/test-universal-filter-kfp.yml | 4 ++-- .github/workflows/test-universal-filter.yml | 6 +++--- .github/workflows/test-universal-hap.yml | 6 +++--- .github/workflows/test-universal-noop-kfp.yml | 4 ++-- .github/workflows/test-universal-noop.yml | 6 +++--- .github/workflows/test-universal-profiler-kfp.yml | 4 ++-- .github/workflows/test-universal-profiler.yml | 6 +++--- .github/workflows/test-universal-resize-kfp.yml | 4 ++-- .github/workflows/test-universal-resize.yml | 6 +++--- .github/workflows/test-universal-tokenization-kfp.yml | 4 ++-- .github/workflows/test-universal-tokenization.yml | 6 +++--- .github/workflows/workflow-manual-run.yml | 2 +- 52 files changed, 130 insertions(+), 130 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index a2909c55d..09678e937 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -8,7 +8,7 @@ on: - "releases/**" jobs: deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest env: REPO_URL: "https://github.com/${{ github.repository }}" REPO_BRANCH: "dev" diff --git a/.github/workflows/deploy-library.yml b/.github/workflows/deploy-library.yml index 8ec97ed9e..0c2473175 100644 --- a/.github/workflows/deploy-library.yml +++ b/.github/workflows/deploy-library.yml @@ -14,7 +14,7 @@ permissions: jobs: build-package: name: Build Ray data processing libraries - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -30,7 +30,7 @@ jobs: name: Publish packages to test.pypi.org # disabled if: false - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: build-package steps: @@ -47,7 +47,7 @@ jobs: publish-pypi: name: Publish release to pypi.org - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: build-package # disabled as of now if: false diff --git a/.github/workflows/deploy-transforms.yml b/.github/workflows/deploy-transforms.yml index 7fe5c8b4d..0f002187d 100644 --- a/.github/workflows/deploy-transforms.yml +++ b/.github/workflows/deploy-transforms.yml @@ -9,7 +9,7 @@ on: jobs: build-images: name: Build and check images - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -23,7 +23,7 @@ jobs: name: Publish packages to quay.io # disabled if: false - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: build-images steps: diff --git a/.github/workflows/test-code-code2parquet-kfp.yml b/.github/workflows/test-code-code2parquet-kfp.yml index 4b46dce56..a157523e6 100644 --- a/.github/workflows/test-code-code2parquet-kfp.yml +++ b/.github/workflows/test-code-code2parquet-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/code2parquet completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-code2parquet.yml b/.github/workflows/test-code-code2parquet.yml index dd4de1df5..4de4e0ebb 100644 --- a/.github/workflows/test-code-code2parquet.yml +++ b/.github/workflows/test-code-code2parquet.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-code-code_quality-kfp.yml b/.github/workflows/test-code-code_quality-kfp.yml index 5e431fd63..facb954be 100644 --- a/.github/workflows/test-code-code_quality-kfp.yml +++ b/.github/workflows/test-code-code_quality-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/code_quality completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-code_quality.yml b/.github/workflows/test-code-code_quality.yml index 4cdadc937..6986abfa7 100644 --- a/.github/workflows/test-code-code_quality.yml +++ b/.github/workflows/test-code-code_quality.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-code-header_cleanser-kfp.yml b/.github/workflows/test-code-header_cleanser-kfp.yml index d0037dfdc..b662e0064 100644 --- a/.github/workflows/test-code-header_cleanser-kfp.yml +++ b/.github/workflows/test-code-header_cleanser-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/header_cleanser completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-header_cleanser.yml b/.github/workflows/test-code-header_cleanser.yml index fe0c70169..1e54d6421 100644 --- a/.github/workflows/test-code-header_cleanser.yml +++ b/.github/workflows/test-code-header_cleanser.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-code-license_select-kfp.yml b/.github/workflows/test-code-license_select-kfp.yml index 62aaaef71..0982daca1 100644 --- a/.github/workflows/test-code-license_select-kfp.yml +++ b/.github/workflows/test-code-license_select-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/license_select completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-license_select.yml b/.github/workflows/test-code-license_select.yml index ca6870a21..62286e0e4 100644 --- a/.github/workflows/test-code-license_select.yml +++ b/.github/workflows/test-code-license_select.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-code-malware-kfp.yml b/.github/workflows/test-code-malware-kfp.yml index cba1df550..e07e0e688 100644 --- a/.github/workflows/test-code-malware-kfp.yml +++ b/.github/workflows/test-code-malware-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/malware completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-malware.yml b/.github/workflows/test-code-malware.yml index d51695af1..f39bdb07e 100644 --- a/.github/workflows/test-code-malware.yml +++ b/.github/workflows/test-code-malware.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-code-proglang_select-kfp.yml b/.github/workflows/test-code-proglang_select-kfp.yml index ce085ece6..635e4d87d 100644 --- a/.github/workflows/test-code-proglang_select-kfp.yml +++ b/.github/workflows/test-code-proglang_select-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/proglang_select completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-proglang_select.yml b/.github/workflows/test-code-proglang_select.yml index eca3aa2f8..f06e5ad94 100644 --- a/.github/workflows/test-code-proglang_select.yml +++ b/.github/workflows/test-code-proglang_select.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-code-repo_level_ordering-kfp.yml b/.github/workflows/test-code-repo_level_ordering-kfp.yml index 98e139d41..ae41eecb4 100644 --- a/.github/workflows/test-code-repo_level_ordering-kfp.yml +++ b/.github/workflows/test-code-repo_level_ordering-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/code/repo_level_ordering completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-code-repo_level_ordering.yml b/.github/workflows/test-code-repo_level_ordering.yml index d6fd5db97..fb05194d3 100644 --- a/.github/workflows/test-code-repo_level_ordering.yml +++ b/.github/workflows/test-code-repo_level_ordering.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-kfp-transform.template b/.github/workflows/test-kfp-transform.template index 36b94de45..27e66ede7 100644 --- a/.github/workflows/test-kfp-transform.template +++ b/.github/workflows/test-kfp-transform.template @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run @TARGET_TRANSFORM_DIR@ completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-kfp.yml b/.github/workflows/test-kfp.yml index 6719c322e..f05ce0290 100644 --- a/.github/workflows/test-kfp.yml +++ b/.github/workflows/test-kfp.yml @@ -51,7 +51,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -68,7 +68,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -117,7 +117,7 @@ jobs: echo "Run ${transforms[$index]} completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -167,7 +167,7 @@ jobs: header_text "Run ${transforms[$index]} completed" build-kfp-components: needs: [check_if_push_images] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 30 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-doc_chunk.yml b/.github/workflows/test-language-doc_chunk.yml index fd2569278..bb49dedaf 100644 --- a/.github/workflows/test-language-doc_chunk.yml +++ b/.github/workflows/test-language-doc_chunk.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-doc_quality-kfp.yml b/.github/workflows/test-language-doc_quality-kfp.yml index 87767dfdf..6b548cbe0 100644 --- a/.github/workflows/test-language-doc_quality-kfp.yml +++ b/.github/workflows/test-language-doc_quality-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/language/doc_quality completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-language-doc_quality.yml b/.github/workflows/test-language-doc_quality.yml index c552be473..bcca97ec5 100644 --- a/.github/workflows/test-language-doc_quality.yml +++ b/.github/workflows/test-language-doc_quality.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-html2parquet.yml b/.github/workflows/test-language-html2parquet.yml index d2464cf93..0d74b5ed2 100644 --- a/.github/workflows/test-language-html2parquet.yml +++ b/.github/workflows/test-language-html2parquet.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-lang_id-kfp.yml b/.github/workflows/test-language-lang_id-kfp.yml index 4b4b87675..b2d8d149c 100644 --- a/.github/workflows/test-language-lang_id-kfp.yml +++ b/.github/workflows/test-language-lang_id-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/language/lang_id completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-language-lang_id.yml b/.github/workflows/test-language-lang_id.yml index c9cd2a4ac..5bd81023b 100644 --- a/.github/workflows/test-language-lang_id.yml +++ b/.github/workflows/test-language-lang_id.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-pdf2parquet.yml b/.github/workflows/test-language-pdf2parquet.yml index 11353bea3..85ad89ce9 100644 --- a/.github/workflows/test-language-pdf2parquet.yml +++ b/.github/workflows/test-language-pdf2parquet.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-pii_redactor.yml b/.github/workflows/test-language-pii_redactor.yml index 4c82779d9..6b0b6b795 100644 --- a/.github/workflows/test-language-pii_redactor.yml +++ b/.github/workflows/test-language-pii_redactor.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-language-text_encoder-kfp.yml b/.github/workflows/test-language-text_encoder-kfp.yml index 5b24270d3..b00660419 100644 --- a/.github/workflows/test-language-text_encoder-kfp.yml +++ b/.github/workflows/test-language-text_encoder-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/language/text_encoder completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-language-text_encoder.yml b/.github/workflows/test-language-text_encoder.yml index 5d2ee4936..c84601340 100644 --- a/.github/workflows/test-language-text_encoder.yml +++ b/.github/workflows/test-language-text_encoder.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-lib.yml b/.github/workflows/test-lib.yml index be00c2076..ed4893b5e 100644 --- a/.github/workflows/test-lib.yml +++ b/.github/workflows/test-lib.yml @@ -31,7 +31,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -48,7 +48,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-python-lib: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -56,7 +56,7 @@ jobs: run: | make -C data-processing-lib/python DOCKER=docker venv test test-ray-lib: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -64,7 +64,7 @@ jobs: run: | make -C data-processing-lib/ray DOCKER=docker venv test test-spark-lib: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -74,7 +74,7 @@ jobs: test-data-processing-lib-images: needs: [check_if_push_images] if: needs.check_if_push_images.outputs.publish_images == 'true' - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} DOCKER_REGISTRY_KEY: ${{ secrets.DOCKER_REGISTRY_KEY }} diff --git a/.github/workflows/test-misc.yml b/.github/workflows/test-misc.yml index 2c601bbd5..62c1a187a 100644 --- a/.github/workflows/test-misc.yml +++ b/.github/workflows/test-misc.yml @@ -29,7 +29,7 @@ on: jobs: test-make: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -37,7 +37,7 @@ jobs: run: | make -n clean test build publish set-versions check-transform-test-workflows: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-packaging-python.yml b/.github/workflows/test-packaging-python.yml index 4ee491c8e..e88eeeae2 100644 --- a/.github/workflows/test-packaging-python.yml +++ b/.github/workflows/test-packaging-python.yml @@ -27,7 +27,7 @@ on: jobs: test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-packaging-ray.yml b/.github/workflows/test-packaging-ray.yml index 4b812540c..9dbce3110 100644 --- a/.github/workflows/test-packaging-ray.yml +++ b/.github/workflows/test-packaging-ray.yml @@ -27,7 +27,7 @@ on: jobs: test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-transform.template b/.github/workflows/test-transform.template index 6f5b4112c..712a91490 100644 --- a/.github/workflows/test-transform.template +++ b/.github/workflows/test-transform.template @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-doc_id-kfp.yml b/.github/workflows/test-universal-doc_id-kfp.yml index 3d2286fe5..a8ca1aca9 100644 --- a/.github/workflows/test-universal-doc_id-kfp.yml +++ b/.github/workflows/test-universal-doc_id-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/doc_id completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-doc_id.yml b/.github/workflows/test-universal-doc_id.yml index 671a8545e..8dbb11fd4 100644 --- a/.github/workflows/test-universal-doc_id.yml +++ b/.github/workflows/test-universal-doc_id.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-ededup-kfp.yml b/.github/workflows/test-universal-ededup-kfp.yml index 20a32c946..a6a35149d 100644 --- a/.github/workflows/test-universal-ededup-kfp.yml +++ b/.github/workflows/test-universal-ededup-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/ededup completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-ededup.yml b/.github/workflows/test-universal-ededup.yml index 1384df79c..aace9621d 100644 --- a/.github/workflows/test-universal-ededup.yml +++ b/.github/workflows/test-universal-ededup.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-fdedup-kfp.yml b/.github/workflows/test-universal-fdedup-kfp.yml index bbe1615ac..6e3c6da90 100644 --- a/.github/workflows/test-universal-fdedup-kfp.yml +++ b/.github/workflows/test-universal-fdedup-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/fdedup completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-fdedup.yml b/.github/workflows/test-universal-fdedup.yml index c5df0abdd..b6eb684c8 100644 --- a/.github/workflows/test-universal-fdedup.yml +++ b/.github/workflows/test-universal-fdedup.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-filter-kfp.yml b/.github/workflows/test-universal-filter-kfp.yml index 5e331bc1b..47e864029 100644 --- a/.github/workflows/test-universal-filter-kfp.yml +++ b/.github/workflows/test-universal-filter-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/filter completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-filter.yml b/.github/workflows/test-universal-filter.yml index 6b627c73b..7d78ac455 100644 --- a/.github/workflows/test-universal-filter.yml +++ b/.github/workflows/test-universal-filter.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-hap.yml b/.github/workflows/test-universal-hap.yml index 3ceaaf5c2..8512e1fb9 100644 --- a/.github/workflows/test-universal-hap.yml +++ b/.github/workflows/test-universal-hap.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-noop-kfp.yml b/.github/workflows/test-universal-noop-kfp.yml index a87b09d9d..ba6f5acb2 100644 --- a/.github/workflows/test-universal-noop-kfp.yml +++ b/.github/workflows/test-universal-noop-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/noop completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-noop.yml b/.github/workflows/test-universal-noop.yml index 91b6a3c79..594c7a424 100644 --- a/.github/workflows/test-universal-noop.yml +++ b/.github/workflows/test-universal-noop.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-profiler-kfp.yml b/.github/workflows/test-universal-profiler-kfp.yml index b08373433..ffac3be18 100644 --- a/.github/workflows/test-universal-profiler-kfp.yml +++ b/.github/workflows/test-universal-profiler-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/profiler completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-profiler.yml b/.github/workflows/test-universal-profiler.yml index 93b0615af..c9db499bf 100644 --- a/.github/workflows/test-universal-profiler.yml +++ b/.github/workflows/test-universal-profiler.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-resize-kfp.yml b/.github/workflows/test-universal-resize-kfp.yml index 8771851d5..233aa02d0 100644 --- a/.github/workflows/test-universal-resize-kfp.yml +++ b/.github/workflows/test-universal-resize-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/resize completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-resize.yml b/.github/workflows/test-universal-resize.yml index 1098b1bdd..408420a2b 100644 --- a/.github/workflows/test-universal-resize.yml +++ b/.github/workflows/test-universal-resize.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/test-universal-tokenization-kfp.yml b/.github/workflows/test-universal-tokenization-kfp.yml index 1055fb0fa..1a1fb7902 100644 --- a/.github/workflows/test-universal-tokenization-kfp.yml +++ b/.github/workflows/test-universal-tokenization-kfp.yml @@ -38,7 +38,7 @@ on: jobs: test-kfp-v1: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -77,7 +77,7 @@ jobs: echo "Run transforms/universal/tokenization completed" test-kfp-v2: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/test-universal-tokenization.yml b/.github/workflows/test-universal-tokenization.yml index 9b3908d9e..475019f00 100644 --- a/.github/workflows/test-universal-tokenization.yml +++ b/.github/workflows/test-universal-tokenization.yml @@ -46,7 +46,7 @@ jobs: # The images are pushed if it is a merge to dev branch or a new tag is created. # The latter being part of the release process. # The images tag is derived from the value of the DOCKER_IMAGE_VERSION variable set in the .make.versions file. - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: publish_images: ${{ steps.version.outputs.publish_images }} steps: @@ -63,7 +63,7 @@ jobs: fi echo "publish_images=$publish_images" >> "$GITHUB_OUTPUT" test-src: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -85,7 +85,7 @@ jobs: fi test-image: needs: [check_if_push_image] - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest timeout-minutes: 120 env: DOCKER_REGISTRY_USER: ${{ secrets.DOCKER_REGISTRY_USER }} diff --git a/.github/workflows/workflow-manual-run.yml b/.github/workflows/workflow-manual-run.yml index 3c0f37d47..f0f7028b6 100644 --- a/.github/workflows/workflow-manual-run.yml +++ b/.github/workflows/workflow-manual-run.yml @@ -22,7 +22,7 @@ jobs: KFPv2: ${{ github.event.inputs.kfp_v2 }} WORKFLOW_PATH: ${{ github.event.inputs.workflow-path }} DEBUG_MODE: ${{ github.event.inputs.debug }} - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4