From 3c7e364fb8b898a6465b00c8afd74e70ac555338 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 2 Oct 2024 13:13:13 +0200 Subject: [PATCH 1/6] chore: Delete local actions --- .github/actions/README.md | 203 ------------------ .../actions/build-product-image/action.yml | 116 ---------- .github/actions/publish-image/action.yml | 153 ------------- .../actions/publish-index-manifest/action.yml | 101 --------- .github/actions/shard/action.yml | 48 ----- 5 files changed, 621 deletions(-) delete mode 100644 .github/actions/README.md delete mode 100644 .github/actions/build-product-image/action.yml delete mode 100644 .github/actions/publish-image/action.yml delete mode 100644 .github/actions/publish-index-manifest/action.yml delete mode 100644 .github/actions/shard/action.yml diff --git a/.github/actions/README.md b/.github/actions/README.md deleted file mode 100644 index 4f5e24407..000000000 --- a/.github/actions/README.md +++ /dev/null @@ -1,203 +0,0 @@ -# Actions - -This repository contains various reusable actions which encapsulate series of -commands to run a particular step in a workflow. - -## Definitions - -| Name | Example | -| ---------------------------------- | ---------------------------------------------------------------------- | -| Image Registry | `docker.stackable.tech` | -| Image Repository | `stackable/kafka` | -| Image Index Manifest Tag | `3.4.1-stackable0.0.0-dev` | -| Image Manifest Tag | `3.4.1-stackable0.0.0-dev-amd64` | -| Image Repository URI | `docker.stackable.tech/stackable/kafka` | -| Image Index URI (if multi-arch) | `docker.stackable.tech/stackable/kafka:3.4.1-stackable0.0.0-dev` | -| Image Manifest URI (if multi-arch) | `docker.stackable.tech/stackable/kafka:3.4.1-stackable0.0.0-dev-amd64` | -| Image Repo Digest | `docker.stackable.tech/stackable/kafka@sha256:917f800259ef4915f976...` | -| Digest | `sha256:917f800259ef4915f976e93987b752fd64debf347568610d7f685d2022...` | - -## `build-product-image` - -Manifest: [build-product-image/action.yml][build-product-image] - -> [!NOTE] -> The build step is not concerned with registries, ports, paths to repositories, -> but still requires a name. If the name does not contain a registry, -> `hub.docker.com` (?) is implied. Therefore, `localhost` will be used as the -> registry so as to avoid accidental interactions with an unintended registry. -> -> Ideally, bake should be refactored to use `localhost` as the registry for the -> previously mentioned reason (whether or not that is behind some option). - -This action builds a *single* container image using `bake`. It does the -following work: - -1. Free disk space to avoid running out of disk space during larger builds. -2. Build the image using `bake` which internally uses `docker buildx`. -3. Temporarily retag the image to use `localhost` instead of - `docker.stackable.tech/stackable`. -4. Produce output values to be used in later steps. - -This action is considered to be the **single** source of truth regarding image -index tag and image manifest tag. All subsequent tasks must use these values to -ensure consistency. - -Currently, bake provides the following ouput in the `bake-target-tags` file: - -```plain -docker.stackable.tech/stackable/kafka:3.4.1-stackable0.0.0-dev-amd64 -``` - -Until bake supports the ability to specify the registry, this action will retag -the image as: - -```plain -localhost/kafka:3.4.1-stackable0.0.0-dev-amd64 -``` - -### Inputs and Outputs - -> [!TIP] -> For descriptions of the inputs and outputs, see the [build-product-image] -> workflow. - -#### Inputs - -- `product-name` -- `product-version` -- `image-tools-version` -- `build-cache-username` -- `build-cache-password` - -#### Outputs - -- `image-manifest-tag` - -[build-product-image]: ./build-product-image/action.yml - -## `publish-image` - -Manifest: [publish-image/action.yml][publish-image] - -This action signs and publishes a *single* container image to the given -registry. It does the following work: - -1. Tag the `source-image-uri` with the specified `image-registry-uti`, - `image-repository`, and `image-repository`. -2. Push the container image to the specified registry. -3. Sign the container image (which pushes the signature to the specified - registry). -4. Generate an SBOM via a syft scan. -5. Attest an image with the SBOM as a predicate (which pushes the attestation - to the specified registry). - -### Inputs and Outputs - -> [!TIP] -> For descriptions of the inputs and outputs, see the [publish-image] workflow. - - -> [!IMPORTANT] -> For multi-arch images, the `image-manifest-tag` should have the `-$ARCH` -> suffix, as the tag without it should be reserved for the image index manifest -> which will refer to container images for each architecture we will push images -> for. - -#### Inputs - -- `image-registry-uri` -- `image-registry-username` -- `image-registry-password` -- `image-repository` -- `image-manifest-tag` -- `source-image-uri` - -#### Outputs - -None - -[publish-image]: ./publish-image/action.yml - -## `publish-index-manifest` - -Manifest: [publish-index-manifest/action.yml][publish-index-manifest] - -This action creates an image index manifest, publishes it, and signs it. It does -the following work: - -1. Create an image index manifest and link to each architecture in - `image-architectures`. -2. Push the image index manifest. -3. Sign the image index manifest (which pushes the signature to the specified - registry). - -### Inputs and Outputs - -> [!TIP] -> For descriptions of the inputs and outputs, see the [publish-index-manifest] -> workflow. - -#### Inputs - -- `image-registry-uri` -- `image-registry-username` -- `image-registry-password` -- `image-repository` -- `image-index-manifest-tag` -- `image-architectures` - -#### Outputs - -None - -[publish-index-manifest]: ./publish-index-manifest/action.yml - -## `shard` - -Manifest: [shard/action.yml][shard] - -This action produces a list of versions for a product. This is to be used as a -matrix dimension to parallelize builds. It does the following work: - -1. Reads the `conf.py`, filtering versions for the product -2. Write the JSON array of version to `$GITHUB_OUTPUT` for use in a matrix. - -Example usage: - -```yaml -jobs: - generate_matrix: - name: Generate Version List - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - id: shard - uses: ./.github/actions/shard - with: - product-name: ${{ env.PRODUCT_NAME }} - outputs: - versions: ${{ steps.shard.outputs.versions }} - - actual_matrix: - needs: [generate_matrix] - strategy: - matrix: - versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }} - # ... -``` - -### Inputs and Outputs - -> [!TIP] -> For descriptions of the inputs and outputs, see the [shard] workflow. - -#### Inputs - -- `product-name` - -#### Outputs - -- `versions` - -[shard]: ./publish-index-manifest/action.yml diff --git a/.github/actions/build-product-image/action.yml b/.github/actions/build-product-image/action.yml deleted file mode 100644 index 84fca4c9d..000000000 --- a/.github/actions/build-product-image/action.yml +++ /dev/null @@ -1,116 +0,0 @@ ---- -name: Build Product Image -description: This action builds a product Docker image with a specific version -inputs: - product-name: - description: The name of the product to build via bake (directory name) - required: true - product-version: - description: The version of the product to build via bake - required: true - image-tools-version: - description: The Stackable image-tools version - default: 0.0.12 - build-cache-username: - description: Build cache username - default: github - build-cache-password: - description: Build cache password - required: true -outputs: - image-manifest-tag: - description: | - Human-readable tag (usually the version) with architecture information, - for example: `3.4.1-stackable0.0.0-dev-amd64` - value: ${{ steps.image_info.outputs.IMAGE_MANIFEST_TAG }} -runs: - using: composite - steps: - - name: Free Disk Space (Ubuntu) - uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1 - with: - # This might remove tools that are actually needed, if set to "true" but - # frees about 6 GB. - tool-cache: false - - # All of these default to true, but feel free to set to "false" if - # necessary for your workflow. - android: true - dotnet: true - haskell: true - large-packages: true - docker-images: true - swap-storage: true - - - name: Setup Docker Buildx - uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 - - # NOTE (@Techassi): Why do we install python via apt and not the setup-python action? - - name: Setup Python - shell: bash - run: | - set -euo pipefail - sudo apt update - sudo apt install -y python3 - - - name: Building ${{ inputs.product-name }} - shell: bash - run: echo ${{ inputs.product-name }} - - - name: Install image-tools-stackabletech - shell: bash - run: pip install image-tools-stackabletech==${{ inputs.image-tools-version }} - - # Needed if you pass the --cache argument to the bake command below - - name: Login to the docker build cache registry - uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 - with: - registry: build-repo.stackable.tech:8083 - username: ${{ inputs.build-cache-username }} - password: ${{ inputs.build-cache-password }} - - - name: Build image using bake - env: - IMAGE_REPOSITORY: ${{ inputs.product-name }} - BAKE_PRODUCT_VERSION: ${{ inputs.product-version }} - shell: bash - run: | - set -euo pipefail - IMAGE_ARCH="$(uname -m | sed -e 's#x86_64#amd64#' | sed -e 's#aarch64#arm64#')" - - bake \ - --product $IMAGE_REPOSITORY=$BAKE_PRODUCT_VERSION \ - --image-version "0.0.0-dev-${IMAGE_ARCH}" \ - --architecture "linux/${IMAGE_ARCH}" \ - --export-tags-file bake-target-tags \ - --cache - - - name: Re-tag Image (Temporary) - shell: bash - run: | - set -euo pipefail - - # Extract the image uri and replace 'docker.stackable.tech/stackable' - # with 'localhost' until bake does the right thing - OLD_IMAGE_URI="$(< bake-target-tags)" - - # Replace the image uri in the bake file - sed -i -e 's/docker\.stackable\.tech\/stackable/localhost/' bake-target-tags - - # Finally, re-tag image - docker tag "$OLD_IMAGE_URI" "$(< bake-target-tags)" - - - name: Extract Environment Variables - id: image_info - shell: bash - run: | - set -euo pipefail - echo "bake-target-tags: "$(< bake-target-tags) - - # Extract the image manifest tag from the bake-target-tags file - IMAGE_MANIFEST_TAG=$(cut -d : -f 2 < bake-target-tags) - [[ -n "$IMAGE_MANIFEST_TAG" ]] - - # Add the contents of the env variables to the GitHub output, so that it - # can be used as action outputs - echo "IMAGE_MANIFEST_TAG=$IMAGE_MANIFEST_TAG" >> $GITHUB_OUTPUT diff --git a/.github/actions/publish-image/action.yml b/.github/actions/publish-image/action.yml deleted file mode 100644 index 2361539c5..000000000 --- a/.github/actions/publish-image/action.yml +++ /dev/null @@ -1,153 +0,0 @@ ---- -name: Publish Container Image -description: This action publishes a container image -inputs: - image-registry-uri: - description: The URI of the container image registry - required: true - image-registry-username: - description: The username used to login to the container image registry - required: true - image-registry-password: - description: The password used to login to the container image registry - required: true - image-repository: - description: | - Last segment of the path, for example `stackable/kafka` or - `k8s/sig-storage/csi-provisioner` - required: true - image-manifest-tag: - description: | - Human-readable tag (usually the version) with architecture information, - for example: `3.4.1-stackable0.0.0-dev-amd64` - required: true - # NOTE (@Techassi): This ideally shouldn't be needed because we should be able - # to construct the source image uri from the other inputs as well, but there - # is some weird stuff happening with bake and how docker tags work. Part of - # the issue is that the hostname where the image is pushed to, is part of the - # tag itself. This shouldn't be the case and OCI should fix it in their spec - # as well. - # - # Another part of the issue is the difference in the namespace/repository - # path. - # On Nexus, we use: - # - stackable/kafka - # - k8s/sig-storage/csi-provisioner - # - # On Harbor we use: - # - sdp/kafka - # - sdp/sig-storage/csi-provisioner - source-image-uri: - description: | - The source image uri, which gets re-tagged by this action to be pushed to - the appropriate registry. - required: true -runs: - using: composite - steps: - - name: Set up Cosign - uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0 - - - name: Set up syft - uses: anchore/sbom-action/download-syft@61119d458adab75f756bc0b9e4bde25725f86a7a # v0.17.2 - - - name: Login to Container Registry (${{ inputs.image-registry-uri }}) - uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 - with: - registry: ${{ inputs.image-registry-uri }} - username: ${{ inputs.image-registry-username }} - password: ${{ inputs.image-registry-password }} - - - name: Re-tag container image - shell: bash - env: - TARGET_IMAGE_URI: ${{ inputs.image-registry-uri }}/${{ inputs.image-repository }}:${{ inputs.image-manifest-tag }} - SOURCE_IMAGE_URI: ${{ inputs.source-image-uri }} - run: | - set -euo pipefail - docker tag "$SOURCE_IMAGE_URI" "$TARGET_IMAGE_URI" - - # Output for the next step - echo "IMAGE_MANIFEST_URI=$TARGET_IMAGE_URI" >> $GITHUB_ENV - - - name: Push the container image to ${{ inputs.image-registry-uri }} - shell: bash - run: | - set -euo pipefail - docker image push "$IMAGE_MANIFEST_URI" - - # Output for the next step - echo "IMAGE_REPO_DIGEST=$(.scripts/get_repo_digest.sh $IMAGE_MANIFEST_URI)" >> $GITHUB_ENV - - - name: Sign the container image (${{ env.IMAGE_REPO_DIGEST }}) - shell: bash - run: | - set -euo pipefail - - # This generates a signature and publishes it to the registry, next to - # the image. This step uses the keyless signing flow with Github Actions - # as the identity provider. - cosign sign --yes "${IMAGE_REPO_DIGEST}" - - - name: Generate SBOM for the container image (${{ env.IMAGE_REPO_DIGEST }}) - shell: bash - env: - IMAGE_MANIFEST_TAG: ${{ inputs.image-manifest-tag }} - IMAGE_REPOSITORY: ${{ inputs.image-repository }} - REGISTRY_URI: ${{ inputs.image-registry-uri }} - run: | - set -euo pipefail - - # Extract the digest from the image repo digest (right side of '@') - DIGEST=${IMAGE_REPO_DIGEST#*@} - - # Construct the package url (purl) - # TODO (@Techassi): Can we use 'oci' instead of 'docker' as the type? - PURL="pkg:docker/$IMAGE_REPOSITORY@$DIGEST?repository_url=$REGISTRY_URI" - - # Get metadata from the image - # NOTE (@Techassi): Maybe we should run this command only once - IMAGE_METADATA_DESCRIPTION=$(docker inspect --format='{{.Config.Labels.description}}' "${IMAGE_REPO_DIGEST}") - IMAGE_METADATA_NAME=$(docker inspect --format='{{.Config.Labels.name}}' "${IMAGE_REPO_DIGEST}") - - # Generate the SBOM - syft scan \ - --output cyclonedx-json@1.5=sbom_raw.json \ - --select-catalogers "-cargo-auditable-binary-cataloger,+sbom-cataloger" \ - --scope all-layers \ - --source-name "$IMAGE_REPOSITORY" \ - --source-version "$IMAGE_MANIFEST_TAG" "${IMAGE_REPO_DIGEST}" - - # Merge SBOM components using https://github.com/stackabletech/mergebom - curl --fail -L -o mergebom https://repo.stackable.tech/repository/packages/mergebom/stable-$(uname -m) - curl --fail -L -o mergebom_signature.bundle https://repo.stackable.tech/repository/packages/mergebom/stable-$(arch)_signature.bundle - # Verify signature - cosign verify-blob --certificate-identity 'https://github.com/stackabletech/mergebom/.github/workflows/build_binary.yaml@refs/heads/main' --certificate-oidc-issuer https://token.actions.githubusercontent.com --bundle mergebom_signature.bundle mergebom - chmod +x ./mergebom - ./mergebom sbom_raw.json sbom.json - - # TODO (@Techassi): Replace author with manufacturer, because it is - # automated, see https://cyclonedx.org/docs/1.6/json/#metadata_component_manufacturer - jq -s \ - --arg description "$IMAGE_METADATA_NAME. $IMAGE_METADATA_DESCRIPTION" \ - --arg purl "$PURL" \ - '{ - "metadata": { - "component": { - "description": $description, - "supplier": { - "name": "Stackable GmbH", - "url": ["https://stackable.tech/"] - }, - "author": "Stackable GmbH", - "purl": $purl, - "publisher": "Stackable GmbH" - } - } - } * .[0]' sbom.json > sbom.merged.json - - # Attest the SBOM to the image - cosign attest \ - --yes \ - --predicate sbom.merged.json \ - --type cyclonedx "${IMAGE_REPO_DIGEST}" diff --git a/.github/actions/publish-index-manifest/action.yml b/.github/actions/publish-index-manifest/action.yml deleted file mode 100644 index 9797c43a4..000000000 --- a/.github/actions/publish-index-manifest/action.yml +++ /dev/null @@ -1,101 +0,0 @@ ---- -name: Publish and Sign Image Index Manifest -description: | - This action publishes and signs a container image index manifest for - multi-arch images -inputs: - image-registry-uri: - description: The URI of the container image registry - required: true - image-registry-username: - description: The username used to login to the container image registry - required: true - image-registry-password: - description: The password used to login to the container image registry - required: true - image-repository: - description: | - Last segment of the path, for example `stackable/kafka` or - `k8s/sig-storage/csi-provisioner` - required: true - image-index-manifest-tag: - description: | - Human-readable tag (usually the version) without architecture information, - for example: `3.4.1-stackable0.0.0-dev` - image-architectures: - description: | - A JSON array of architectures to add to the image index manifest, like - ["amd64", "arm64", "riscv"] - default: | - ["amd64", "arm64"] -runs: - using: composite - steps: - - name: Set up Cosign - uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0 - - - name: Login to Container Registry (${{ inputs.image-registry-uri }}) - uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 - with: - registry: ${{ inputs.image-registry-uri }} - username: ${{ inputs.image-registry-username }} - password: ${{ inputs.image-registry-password }} - - - name: Create Image Index Manifest - shell: bash - env: - IMAGE_INDEX_MANIFEST_TAG: ${{ inputs.image-index-manifest-tag }} - IMAGE_ARCHITECTURES: ${{ inputs.image-architectures }} - IMAGE_REPOSITORY: ${{ inputs.image-repository }} - REGISTRY_URI: ${{ inputs.image-registry-uri }} - run: | - set -euo pipefail - - # Construct the image index uri, which for example contains: - # docker.stackable.tech/stackable/kafka:3.4.1-stackable0.0.0-dev - IMAGE_INDEX_URI="$REGISTRY_URI/$IMAGE_REPOSITORY:$IMAGE_INDEX_MANIFEST_TAG" - echo "IMAGE_INDEX_URI=$IMAGE_INDEX_URI" >> $GITHUB_ENV - - AMEND_OPTIONS=$( - jq \ - --raw-output \ - --null-input \ - --arg image_index_uri "$IMAGE_INDEX_URI" \ - --arg arch_list "$IMAGE_ARCHITECTURES" \ - ' - $arch_list - | fromjson - | [ - .[] as $arch | "--amend \($image_index_uri)-\($arch)" - ] - | join(" ")' - ) - - # `docker manifest push` directly returns the digest of the manifest list - # As it is an experimental feature, this might change in the future. - # We use --amend because the manifest list would be updated since we use - # the same tag: 0.0.0-dev - # - # Further reading: https://docs.docker.com/reference/cli/docker/manifest/push/ - docker manifest create "$IMAGE_INDEX_URI" ${AMEND_OPTIONS[@]} - docker manifest push "$IMAGE_INDEX_URI" - - - name: Sign Image Index Manifest - shell: bash - env: - IMAGE_REPOSITORY: ${{ inputs.image-repository }} - REGISTRY_URI: ${{ inputs.image-registry-uri }} - run: | - set -euo pipefail - - # Get the image index manifest digest - DIGEST=$(.scripts/get_manifest_digest.sh "$IMAGE_INDEX_URI") - - # Construct the image repo digest, which for example contains: - # docker.stackable.tech/stackable/kafka@sha256:91... - IMAGE_REPO_DIGEST="$REGISTRY_URI/$IMAGE_REPOSITORY@$DIGEST" - - # This generates a signature and publishes it to the registry, next to - # the image. This step uses the keyless signing flow with Github Actions - # as the identity provider. - cosign sign --yes "$IMAGE_REPO_DIGEST" diff --git a/.github/actions/shard/action.yml b/.github/actions/shard/action.yml deleted file mode 100644 index 8422b764b..000000000 --- a/.github/actions/shard/action.yml +++ /dev/null @@ -1,48 +0,0 @@ ---- -name: Generate Shards -description: This action builds list of shard indices for use in Github Actions Matrices -inputs: - product-name: - description: The name of the product to build via bake (directory name) - required: true -outputs: - versions: - description: A list of product versions - value: ${{ steps.generate_shards.outputs.VERSIONS }} -runs: - using: composite - steps: - - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 - with: - python-version: '3.12' - - name: Generate Shards - id: generate_shards - shell: python - env: - PRODUCT_NAME: ${{ inputs.product-name }} - run: | - # Need to get the list of versions for the product - import sys - import os - sys.path.append(str(os.getcwd())) - import conf - - product=os.environ['PRODUCT_NAME'] - print(f"Generating version list for {product}") - - # get the product config - product_conf = list(filter(lambda x: x["name"] == product, conf.products))[0] - # list the versions, eg: [1.0, 1.1, 2.0] - versions = [v["product"] for k,v in enumerate(product_conf["versions"])] - output_versions = f"VERSIONS={versions}\n" - - github_outputs_file = os.environ['GITHUB_OUTPUT'] - f = open(github_outputs_file, "w") - print(f"Writing to $GITHUB_OUTPUT: {output_versions}") - f.write(output_versions) - f.close() - - name: Print Shards - shell: bash - run: | - set -euo pipefail - echo versions=${{ steps.generate_shards.outputs.VERSIONS }} From 8818e56a9980c4d49d1f0eea8186b185e6c401ff Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 2 Oct 2024 13:16:34 +0200 Subject: [PATCH 2/6] ci: Use stackabletech/actions repo --- .github/workflows/dev_airflow.yaml | 12 ++++++------ .github/workflows/dev_druid.yaml | 12 ++++++------ .github/workflows/dev_hadoop.yaml | 12 ++++++------ .github/workflows/dev_hbase.yaml | 12 ++++++------ .github/workflows/dev_hello-world.yaml | 12 ++++++------ .github/workflows/dev_hive.yaml | 12 ++++++------ .github/workflows/dev_java-base.yaml | 12 ++++++------ .github/workflows/dev_java-devel.yaml | 12 ++++++------ .github/workflows/dev_kafka-testing-tools.yaml | 12 ++++++------ .github/workflows/dev_kafka.yaml | 12 ++++++------ .github/workflows/dev_kcat.yaml | 12 ++++++------ .github/workflows/dev_krb5.yaml | 12 ++++++------ .github/workflows/dev_nifi.yaml | 12 ++++++------ .github/workflows/dev_omid.yaml | 12 ++++++------ .github/workflows/dev_opa.yaml | 12 ++++++------ .github/workflows/dev_spark-k8s.yaml | 12 ++++++------ .github/workflows/dev_stackable-base.yaml | 12 ++++++------ .github/workflows/dev_superset.yaml | 12 ++++++------ .github/workflows/dev_testing-tools.yaml | 12 ++++++------ .github/workflows/dev_tools.yaml | 12 ++++++------ .github/workflows/dev_trino-cli.yaml | 12 ++++++------ .github/workflows/dev_trino.yaml | 12 ++++++------ .github/workflows/dev_vector.yaml | 12 ++++++------ .github/workflows/dev_zookeeper.yaml | 12 ++++++------ .github/workflows/mirror.yaml | 8 ++++---- 25 files changed, 148 insertions(+), 148 deletions(-) diff --git a/.github/workflows/dev_airflow.yaml b/.github/workflows/dev_airflow.yaml index 46d5c0008..cbf998564 100644 --- a/.github/workflows/dev_airflow.yaml +++ b/.github/workflows/dev_airflow.yaml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -51,14 +51,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -68,7 +68,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -100,7 +100,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_druid.yaml b/.github/workflows/dev_druid.yaml index 4604d7588..1b8a25939 100644 --- a/.github/workflows/dev_druid.yaml +++ b/.github/workflows/dev_druid.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hadoop.yaml b/.github/workflows/dev_hadoop.yaml index 0e5390c83..9981aa1b5 100644 --- a/.github/workflows/dev_hadoop.yaml +++ b/.github/workflows/dev_hadoop.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hbase.yaml b/.github/workflows/dev_hbase.yaml index e21d06b95..654b37e3a 100644 --- a/.github/workflows/dev_hbase.yaml +++ b/.github/workflows/dev_hbase.yaml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -54,14 +54,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -71,7 +71,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -94,7 +94,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -103,7 +103,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hello-world.yaml b/.github/workflows/dev_hello-world.yaml index 763c3f695..dfb14333b 100644 --- a/.github/workflows/dev_hello-world.yaml +++ b/.github/workflows/dev_hello-world.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hive.yaml b/.github/workflows/dev_hive.yaml index a83fdf90c..22ef91ce0 100644 --- a/.github/workflows/dev_hive.yaml +++ b/.github/workflows/dev_hive.yaml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -54,14 +54,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -71,7 +71,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -94,7 +94,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -103,7 +103,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_java-base.yaml b/.github/workflows/dev_java-base.yaml index b39b1691d..c31e1fe21 100644 --- a/.github/workflows/dev_java-base.yaml +++ b/.github/workflows/dev_java-base.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_java-devel.yaml b/.github/workflows/dev_java-devel.yaml index d07bd3680..9f77a378b 100644 --- a/.github/workflows/dev_java-devel.yaml +++ b/.github/workflows/dev_java-devel.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_kafka-testing-tools.yaml b/.github/workflows/dev_kafka-testing-tools.yaml index bf3b2e28b..a91a71b10 100644 --- a/.github/workflows/dev_kafka-testing-tools.yaml +++ b/.github/workflows/dev_kafka-testing-tools.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_kafka.yaml b/.github/workflows/dev_kafka.yaml index 4ee8d78f4..311e94dfa 100644 --- a/.github/workflows/dev_kafka.yaml +++ b/.github/workflows/dev_kafka.yaml @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -55,14 +55,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -72,7 +72,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -95,7 +95,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -104,7 +104,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_kcat.yaml b/.github/workflows/dev_kcat.yaml index 37d46877c..5c1242f44 100644 --- a/.github/workflows/dev_kcat.yaml +++ b/.github/workflows/dev_kcat.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_krb5.yaml b/.github/workflows/dev_krb5.yaml index 891877976..31078235d 100644 --- a/.github/workflows/dev_krb5.yaml +++ b/.github/workflows/dev_krb5.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_nifi.yaml b/.github/workflows/dev_nifi.yaml index 770eccbe8..d877cc54a 100644 --- a/.github/workflows/dev_nifi.yaml +++ b/.github/workflows/dev_nifi.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_omid.yaml b/.github/workflows/dev_omid.yaml index 6d6a20d45..b7f05ea03 100644 --- a/.github/workflows/dev_omid.yaml +++ b/.github/workflows/dev_omid.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_opa.yaml b/.github/workflows/dev_opa.yaml index 114984ea7..e41682cfd 100644 --- a/.github/workflows/dev_opa.yaml +++ b/.github/workflows/dev_opa.yaml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -51,14 +51,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -68,7 +68,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -100,7 +100,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_spark-k8s.yaml b/.github/workflows/dev_spark-k8s.yaml index 9cb0a986b..4cdb0805c 100644 --- a/.github/workflows/dev_spark-k8s.yaml +++ b/.github/workflows/dev_spark-k8s.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_stackable-base.yaml b/.github/workflows/dev_stackable-base.yaml index bf73912ac..00f0571a8 100644 --- a/.github/workflows/dev_stackable-base.yaml +++ b/.github/workflows/dev_stackable-base.yaml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -50,14 +50,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -67,7 +67,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -90,7 +90,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -99,7 +99,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_superset.yaml b/.github/workflows/dev_superset.yaml index 21a5bd6db..a4f85a17f 100644 --- a/.github/workflows/dev_superset.yaml +++ b/.github/workflows/dev_superset.yaml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -51,14 +51,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -68,7 +68,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -100,7 +100,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_testing-tools.yaml b/.github/workflows/dev_testing-tools.yaml index 3de3c3aa0..50ced72e0 100644 --- a/.github/workflows/dev_testing-tools.yaml +++ b/.github/workflows/dev_testing-tools.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_tools.yaml b/.github/workflows/dev_tools.yaml index 872e1c01c..69d4ed2c8 100644 --- a/.github/workflows/dev_tools.yaml +++ b/.github/workflows/dev_tools.yaml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -50,14 +50,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -67,7 +67,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -90,7 +90,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -99,7 +99,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_trino-cli.yaml b/.github/workflows/dev_trino-cli.yaml index e8fef9af0..555bb5c9c 100644 --- a/.github/workflows/dev_trino-cli.yaml +++ b/.github/workflows/dev_trino-cli.yaml @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -52,14 +52,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -69,7 +69,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -92,7 +92,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -101,7 +101,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_trino.yaml b/.github/workflows/dev_trino.yaml index 4b9796fc7..034736cec 100644 --- a/.github/workflows/dev_trino.yaml +++ b/.github/workflows/dev_trino.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_vector.yaml b/.github/workflows/dev_vector.yaml index f61ad5d4a..a6e1f68ef 100644 --- a/.github/workflows/dev_vector.yaml +++ b/.github/workflows/dev_vector.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_zookeeper.yaml b/.github/workflows/dev_zookeeper.yaml index 75c8299c9..2b67b72bd 100644 --- a/.github/workflows/dev_zookeeper.yaml +++ b/.github/workflows/dev_zookeeper.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: ./.github/actions/shard + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: ./.github/actions/build-product-image + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/mirror.yaml b/.github/workflows/mirror.yaml index 745e733df..02faf26bc 100644 --- a/.github/workflows/mirror.yaml +++ b/.github/workflows/mirror.yaml @@ -50,7 +50,7 @@ jobs: echo "IMAGE_REPOSITORY=$(.scripts/get_repo_name.sh)" | tee -a "$GITHUB_ENV" - name: Publish Container Image on docker.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -60,7 +60,7 @@ jobs: source-image-uri: ${{ format('{0}:{1}', inputs.image-repository-uri, inputs.image-index-manifest-tag) }} - name: Publish Container Image on oci.stackable.tech - uses: ./.github/actions/publish-image + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -85,7 +85,7 @@ jobs: echo "IMAGE_REPOSITORY=$(.scripts/get_repo_name.sh)" | tee -a "$GITHUB_ENV" - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -94,7 +94,7 @@ jobs: image-index-manifest-tag: ${{ inputs.image-index-manifest-tag }} - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: ./.github/actions/publish-index-manifest + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build From 694f7bfa1068ecaad96d3e4d5f36792ff92326c8 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 2 Oct 2024 13:17:29 +0200 Subject: [PATCH 3/6] ci: Trigger airflow workflow on PR for testing --- .github/workflows/dev_airflow.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/dev_airflow.yaml b/.github/workflows/dev_airflow.yaml index cbf998564..ab2f88b7c 100644 --- a/.github/workflows/dev_airflow.yaml +++ b/.github/workflows/dev_airflow.yaml @@ -5,6 +5,8 @@ env: PRODUCT_NAME: airflow on: + # For temporary testing + pull_request: workflow_dispatch: schedule: - cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_* From 68f158f3b00fa60b9ed352d81ce86a6f120d0062 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 2 Oct 2024 13:22:26 +0200 Subject: [PATCH 4/6] Revert "ci: Trigger airflow workflow on PR for testing" This reverts commit 694f7bfa1068ecaad96d3e4d5f36792ff92326c8. --- .github/workflows/dev_airflow.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/dev_airflow.yaml b/.github/workflows/dev_airflow.yaml index ab2f88b7c..cbf998564 100644 --- a/.github/workflows/dev_airflow.yaml +++ b/.github/workflows/dev_airflow.yaml @@ -5,8 +5,6 @@ env: PRODUCT_NAME: airflow on: - # For temporary testing - pull_request: workflow_dispatch: schedule: - cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_* From 08e6315d6f244fc1765919f41247dfe5dea553b4 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 2 Oct 2024 13:45:44 +0200 Subject: [PATCH 5/6] ci: Use stackabletech/run-pre-commit action --- .github/workflows/pr_pre-commit.yaml | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/.github/workflows/pr_pre-commit.yaml b/.github/workflows/pr_pre-commit.yaml index 1f383edb2..7761e03e8 100644 --- a/.github/workflows/pr_pre-commit.yaml +++ b/.github/workflows/pr_pre-commit.yaml @@ -6,6 +6,7 @@ on: env: HADOLINT_VERSION: "v2.12.0" + PYTHON_VERSION: "3.12" jobs: pre-commit: @@ -14,25 +15,7 @@ jobs: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 - - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 + - uses: stackabletech/actions/run-pre-commit@93b2a5a023487ef9509f24600c12374553478f1d with: - python-version: '3.12' - - name: Setup Hadolint - shell: bash - run: | - set -euo pipefail - - LOCATION_DIR="$HOME/.local/bin" - LOCATION_BIN="$LOCATION_DIR/hadolint" - - SYSTEM=$(uname -s) - ARCH=$(uname -m) - - mkdir -p "$LOCATION_DIR" - curl -sL -o "${LOCATION_BIN}" "https://github.com/hadolint/hadolint/releases/download/${{ env.HADOLINT_VERSION }}/hadolint-$SYSTEM-$ARCH" - chmod 700 "${LOCATION_BIN}" - - echo "$LOCATION_DIR" >> "$GITHUB_PATH" - - uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1 - with: - extra_args: "--from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}" + python-version: ${{ env.PYTHON_VERSION }} + hadolint: ${{ env.HADOLINT_VERSION }} From 03c29ca07c2ba90018033e5e17bf4373a036b9c3 Mon Sep 17 00:00:00 2001 From: Techassi Date: Wed, 2 Oct 2024 14:28:03 +0200 Subject: [PATCH 6/6] chore: Add version comment to actions --- .github/workflows/dev_airflow.yaml | 12 ++++++------ .github/workflows/dev_druid.yaml | 12 ++++++------ .github/workflows/dev_hadoop.yaml | 12 ++++++------ .github/workflows/dev_hbase.yaml | 12 ++++++------ .github/workflows/dev_hello-world.yaml | 12 ++++++------ .github/workflows/dev_hive.yaml | 12 ++++++------ .github/workflows/dev_java-base.yaml | 12 ++++++------ .github/workflows/dev_java-devel.yaml | 12 ++++++------ .github/workflows/dev_kafka-testing-tools.yaml | 12 ++++++------ .github/workflows/dev_kafka.yaml | 12 ++++++------ .github/workflows/dev_kcat.yaml | 12 ++++++------ .github/workflows/dev_krb5.yaml | 12 ++++++------ .github/workflows/dev_nifi.yaml | 12 ++++++------ .github/workflows/dev_omid.yaml | 12 ++++++------ .github/workflows/dev_opa.yaml | 12 ++++++------ .github/workflows/dev_spark-k8s.yaml | 12 ++++++------ .github/workflows/dev_stackable-base.yaml | 12 ++++++------ .github/workflows/dev_superset.yaml | 12 ++++++------ .github/workflows/dev_testing-tools.yaml | 12 ++++++------ .github/workflows/dev_tools.yaml | 12 ++++++------ .github/workflows/dev_trino-cli.yaml | 12 ++++++------ .github/workflows/dev_trino.yaml | 12 ++++++------ .github/workflows/dev_vector.yaml | 12 ++++++------ .github/workflows/dev_zookeeper.yaml | 12 ++++++------ .github/workflows/mirror.yaml | 8 ++++---- .github/workflows/pr_pre-commit.yaml | 2 +- 26 files changed, 149 insertions(+), 149 deletions(-) diff --git a/.github/workflows/dev_airflow.yaml b/.github/workflows/dev_airflow.yaml index cbf998564..a1f2f1523 100644 --- a/.github/workflows/dev_airflow.yaml +++ b/.github/workflows/dev_airflow.yaml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -51,14 +51,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -68,7 +68,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -100,7 +100,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_druid.yaml b/.github/workflows/dev_druid.yaml index 1b8a25939..9c0343422 100644 --- a/.github/workflows/dev_druid.yaml +++ b/.github/workflows/dev_druid.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hadoop.yaml b/.github/workflows/dev_hadoop.yaml index 9981aa1b5..b02f8c7e2 100644 --- a/.github/workflows/dev_hadoop.yaml +++ b/.github/workflows/dev_hadoop.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hbase.yaml b/.github/workflows/dev_hbase.yaml index 654b37e3a..5774deb6b 100644 --- a/.github/workflows/dev_hbase.yaml +++ b/.github/workflows/dev_hbase.yaml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -54,14 +54,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -71,7 +71,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -94,7 +94,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -103,7 +103,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hello-world.yaml b/.github/workflows/dev_hello-world.yaml index dfb14333b..f824061c9 100644 --- a/.github/workflows/dev_hello-world.yaml +++ b/.github/workflows/dev_hello-world.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_hive.yaml b/.github/workflows/dev_hive.yaml index 22ef91ce0..c32439007 100644 --- a/.github/workflows/dev_hive.yaml +++ b/.github/workflows/dev_hive.yaml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -54,14 +54,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -71,7 +71,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -94,7 +94,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -103,7 +103,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_java-base.yaml b/.github/workflows/dev_java-base.yaml index c31e1fe21..1ad8bc816 100644 --- a/.github/workflows/dev_java-base.yaml +++ b/.github/workflows/dev_java-base.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_java-devel.yaml b/.github/workflows/dev_java-devel.yaml index 9f77a378b..b7a78e82a 100644 --- a/.github/workflows/dev_java-devel.yaml +++ b/.github/workflows/dev_java-devel.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_kafka-testing-tools.yaml b/.github/workflows/dev_kafka-testing-tools.yaml index a91a71b10..8d4c13502 100644 --- a/.github/workflows/dev_kafka-testing-tools.yaml +++ b/.github/workflows/dev_kafka-testing-tools.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_kafka.yaml b/.github/workflows/dev_kafka.yaml index 311e94dfa..29af9a3b3 100644 --- a/.github/workflows/dev_kafka.yaml +++ b/.github/workflows/dev_kafka.yaml @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -55,14 +55,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -72,7 +72,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -95,7 +95,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -104,7 +104,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_kcat.yaml b/.github/workflows/dev_kcat.yaml index 5c1242f44..e61ceb1bb 100644 --- a/.github/workflows/dev_kcat.yaml +++ b/.github/workflows/dev_kcat.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_krb5.yaml b/.github/workflows/dev_krb5.yaml index 31078235d..0c68a7e1c 100644 --- a/.github/workflows/dev_krb5.yaml +++ b/.github/workflows/dev_krb5.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_nifi.yaml b/.github/workflows/dev_nifi.yaml index d877cc54a..be3094900 100644 --- a/.github/workflows/dev_nifi.yaml +++ b/.github/workflows/dev_nifi.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_omid.yaml b/.github/workflows/dev_omid.yaml index b7f05ea03..b08adc535 100644 --- a/.github/workflows/dev_omid.yaml +++ b/.github/workflows/dev_omid.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_opa.yaml b/.github/workflows/dev_opa.yaml index e41682cfd..22985e21a 100644 --- a/.github/workflows/dev_opa.yaml +++ b/.github/workflows/dev_opa.yaml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -51,14 +51,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -68,7 +68,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -100,7 +100,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_spark-k8s.yaml b/.github/workflows/dev_spark-k8s.yaml index 4cdb0805c..0a930a2ed 100644 --- a/.github/workflows/dev_spark-k8s.yaml +++ b/.github/workflows/dev_spark-k8s.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_stackable-base.yaml b/.github/workflows/dev_stackable-base.yaml index 00f0571a8..495616387 100644 --- a/.github/workflows/dev_stackable-base.yaml +++ b/.github/workflows/dev_stackable-base.yaml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -50,14 +50,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -67,7 +67,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -90,7 +90,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -99,7 +99,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_superset.yaml b/.github/workflows/dev_superset.yaml index a4f85a17f..64c54fea9 100644 --- a/.github/workflows/dev_superset.yaml +++ b/.github/workflows/dev_superset.yaml @@ -27,7 +27,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -51,14 +51,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -68,7 +68,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -100,7 +100,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_testing-tools.yaml b/.github/workflows/dev_testing-tools.yaml index 50ced72e0..ec103c31c 100644 --- a/.github/workflows/dev_testing-tools.yaml +++ b/.github/workflows/dev_testing-tools.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_tools.yaml b/.github/workflows/dev_tools.yaml index 69d4ed2c8..e58705f7a 100644 --- a/.github/workflows/dev_tools.yaml +++ b/.github/workflows/dev_tools.yaml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -50,14 +50,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -67,7 +67,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -90,7 +90,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -99,7 +99,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_trino-cli.yaml b/.github/workflows/dev_trino-cli.yaml index 555bb5c9c..fa6c5baab 100644 --- a/.github/workflows/dev_trino-cli.yaml +++ b/.github/workflows/dev_trino-cli.yaml @@ -28,7 +28,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -52,14 +52,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -69,7 +69,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -92,7 +92,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -101,7 +101,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_trino.yaml b/.github/workflows/dev_trino.yaml index 034736cec..6775d424e 100644 --- a/.github/workflows/dev_trino.yaml +++ b/.github/workflows/dev_trino.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_vector.yaml b/.github/workflows/dev_vector.yaml index a6e1f68ef..9c1bdeb2a 100644 --- a/.github/workflows/dev_vector.yaml +++ b/.github/workflows/dev_vector.yaml @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -49,14 +49,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -66,7 +66,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -89,7 +89,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -98,7 +98,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/dev_zookeeper.yaml b/.github/workflows/dev_zookeeper.yaml index 2b67b72bd..511351c44 100644 --- a/.github/workflows/dev_zookeeper.yaml +++ b/.github/workflows/dev_zookeeper.yaml @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - id: shard - uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/shard@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} outputs: @@ -53,14 +53,14 @@ jobs: - name: Build Product Image id: build - uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/build-product-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: product-name: ${{ env.PRODUCT_NAME }} product-version: ${{ matrix.versions }} build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }} - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -70,7 +70,7 @@ jobs: source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -93,7 +93,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -102,7 +102,7 @@ jobs: image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/mirror.yaml b/.github/workflows/mirror.yaml index 02faf26bc..550d135f3 100644 --- a/.github/workflows/mirror.yaml +++ b/.github/workflows/mirror.yaml @@ -50,7 +50,7 @@ jobs: echo "IMAGE_REPOSITORY=$(.scripts/get_repo_name.sh)" | tee -a "$GITHUB_ENV" - name: Publish Container Image on docker.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -60,7 +60,7 @@ jobs: source-image-uri: ${{ format('{0}:{1}', inputs.image-repository-uri, inputs.image-index-manifest-tag) }} - name: Publish Container Image on oci.stackable.tech - uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-image@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build @@ -85,7 +85,7 @@ jobs: echo "IMAGE_REPOSITORY=$(.scripts/get_repo_name.sh)" | tee -a "$GITHUB_ENV" - name: Publish and Sign Image Index Manifest to docker.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: docker.stackable.tech image-registry-username: github @@ -94,7 +94,7 @@ jobs: image-index-manifest-tag: ${{ inputs.image-index-manifest-tag }} - name: Publish and Sign Image Index Manifest to oci.stackable.tech - uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d + uses: stackabletech/actions/publish-index-manifest@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: image-registry-uri: oci.stackable.tech image-registry-username: robot$sdp+github-action-build diff --git a/.github/workflows/pr_pre-commit.yaml b/.github/workflows/pr_pre-commit.yaml index 7761e03e8..215e0001c 100644 --- a/.github/workflows/pr_pre-commit.yaml +++ b/.github/workflows/pr_pre-commit.yaml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 - - uses: stackabletech/actions/run-pre-commit@93b2a5a023487ef9509f24600c12374553478f1d + - uses: stackabletech/actions/run-pre-commit@93b2a5a023487ef9509f24600c12374553478f1d # 0.0.1 with: python-version: ${{ env.PYTHON_VERSION }} hadolint: ${{ env.HADOLINT_VERSION }}