diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a5e8d0d2..c3d7f4d77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -196,7 +196,7 @@ jobs: earthly_runner_address: ${{ secrets.earthly_runner_address }} earthly_runner_secret: ${{ secrets.earthly_runner_secret }} deploy: - uses: input-output-hk/catalyst-ci/.github/workflows/deploy.yml@@feat/udcmigration + uses: input-output-hk/catalyst-ci/.github/workflows/deploy.yml@@feat/udc-migration if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && inputs.deployment_images != '' needs: [publish] with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4ad2fa8b3..e68035fd9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,7 +37,7 @@ jobs: repository: ${{ inputs.deployment_repo }} token: ${{ secrets.token }} - name: Merge hashes - uses: input-output-hk/catalyst-ci/actions/merge@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/merge@@feat/udc-migration with: hash_file: "src/kube/environments/${{ inputs.environment }}/hashes.json" images: ${{ inputs.images }} diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index c7eff7197..5c612a093 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -74,7 +74,7 @@ jobs: echo "DEST_DIR=$DEST_DIR" >> $GITHUB_ENV echo "CLEAN_EXCLUDE=$CLEAN_EXCLUDE" >> $GITHUB_ENV - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: aws_role_arn: ${{ inputs.aws_role_arn }} aws_region: ${{ inputs.aws_region }} @@ -82,7 +82,7 @@ jobs: earthly_version: ${{ inputs.earthly_version }} earthly_runner_secret: ${{ secrets.earthly_runner_secret }} - name: Build docs - uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration id: build with: earthfile: ${{ inputs.earthfile }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 390aa58da..0858c605b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -88,13 +88,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: cli_version: ${{ inputs.ci_cli_version }} configure_registries: "false" earthly_skip_install: "true" - name: Discover Earthly files - uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration id: discover with: targets: ${{ inputs.target }} @@ -131,7 +131,7 @@ jobs: echo "targets=$targets_with_space" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: aws_ecr_registry: ${{ inputs.aws_ecr_registry }} aws_role_arn: ${{ inputs.aws_role_arn }} @@ -142,7 +142,7 @@ jobs: earthly_version: ${{ inputs.earthly_version }} earthly_runner_secret: ${{ secrets.earthly_runner_secret }} - name: Build image - uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration id: build with: earthfile: ${{ matrix.earthfile }} @@ -150,7 +150,7 @@ jobs: platform: ${{ matrix.platform }} runner_address: ${{ secrets.earthly_runner_address }} - name: Push image - uses: input-output-hk/catalyst-ci/actions/push@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/push@@feat/udc-migration if: github.ref == format('refs/heads/{0}', inputs.default_branch) && !inputs.skip_publish_on_default with: image: ${{ steps.build.outputs.image }} @@ -164,7 +164,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT - name: Push release image - uses: input-output-hk/catalyst-ci/actions/push@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/push@@feat/udc-migration if: startsWith(github.ref, 'refs/tags/') with: image: ${{ steps.build.outputs.image }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35052425f..8b7d6e0c2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,13 +72,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: cli_version: ${{ inputs.ci_cli_version }} configure_registries: "false" earthly_skip_install: "true" - name: Discover Earthly files - uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration id: discover with: targets: ${{ inputs.target }} @@ -115,7 +115,7 @@ jobs: echo "targets=$targets_with_space" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: aws_role_arn: ${{ inputs.aws_role_arn }} aws_region: ${{ inputs.aws_region }} @@ -125,7 +125,7 @@ jobs: earthly_version: ${{ inputs.earthly_version }} earthly_runner_secret: ${{ secrets.earthly_runner_secret }} - name: Build artifact - uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration id: build with: earthfile: ${{ matrix.earthfile }} diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 18b448411..e34006691 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -66,13 +66,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: cli_version: ${{ inputs.ci_cli_version }} configure_registries: "false" earthly_skip_install: "true" - name: Discover Earthly files - uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration id: discover with: targets: ${{ inputs.target }} @@ -107,7 +107,7 @@ jobs: echo "targets=$targets_with_space" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: aws_role_arn: ${{ inputs.aws_role_arn }} aws_region: ${{ inputs.aws_region }} @@ -117,7 +117,7 @@ jobs: earthly_version: ${{ inputs.earthly_version }} earthly_runner_secret: ${{ secrets.earthly_runner_secret }} - name: Run - uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration id: build with: privileged: ${{ inputs.privileged }} diff --git a/actions/configure-runner/README.md b/actions/configure-runner/README.md index 8ed6f336d..770ccf2a2 100644 --- a/actions/configure-runner/README.md +++ b/actions/configure-runner/README.md @@ -14,7 +14,7 @@ Earthly to consume them correctly. ```yaml - name: Setup Remote Runner - uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udc-migration with: path: /path/to/store/certs # Optional, defaults to /tmp/certs secret: ${{ secrets.EARTHLY_RUNNER_SECRET }} # The full name of the secret in AWS SM diff --git a/actions/discover/README.md b/actions/discover/README.md index dd8433b66..d11e23021 100644 --- a/actions/discover/README.md +++ b/actions/discover/README.md @@ -18,10 +18,10 @@ discover: json: ${{ steps.discover.outputs.json } steps: - name: Install CLI - uses: input-output-hk/catalyst-ci/actions/install@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/install@@feat/udc-migration # We discover all Earthfiles that contain a target named "target" - name: Discover Earthly files - uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration id: discover with: targets: target # You can list more than one target here diff --git a/actions/install/README.md b/actions/install/README.md index d506accd7..826a75edd 100644 --- a/actions/install/README.md +++ b/actions/install/README.md @@ -12,7 +12,7 @@ The CLI is required by a select few actions in order to perform certain operatio ```yaml - name: Install CLI - uses: input-output-hk/catalyst-ci/actions/install@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/install@@feat/udc-migration with: version: latest # Or select a specific version - name: Run CLI diff --git a/actions/merge/README.md b/actions/merge/README.md index d43ee72a7..e161d7465 100644 --- a/actions/merge/README.md +++ b/actions/merge/README.md @@ -10,7 +10,7 @@ It's intended to automate a GitOps repository where images are deployed from a c ```yaml - name: Merge hashes - uses: input-output-hk/catalyst-ci/actions/merge@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/merge@@feat/udc-migration with: hash_file: "/path/to/existing/hashes.json" images: | diff --git a/actions/push/README.md b/actions/push/README.md index a0650c654..2a1104bcf 100644 --- a/actions/push/README.md +++ b/actions/push/README.md @@ -13,7 +13,7 @@ To see a full demonstration of this action, see the [publish workflow](../../.gi ```yaml - name: Push image - uses: input-output-hk/catalyst-ci/actions/push@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/push@@feat/udc-migration with: image: my_image:latest registries: | diff --git a/actions/run/README.md b/actions/run/README.md index c6affe950..4c1428323 100644 --- a/actions/run/README.md +++ b/actions/run/README.md @@ -12,7 +12,7 @@ To see a full demonstration of this action, see the [release workflow](../../.gi ```yaml - name: Build - uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration with: earthfile: ./project target: build diff --git a/actions/setup/README.md b/actions/setup/README.md index d0c27d53d..7a16e891e 100644 --- a/actions/setup/README.md +++ b/actions/setup/README.md @@ -19,7 +19,7 @@ To see a full demonstration of this action, see the [release workflow](../../.gi ```yaml - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration with: aws_ecr_registry: 1234567890.dkr.ecr.us-east-1.amazonaws.com aws_role_arn: arn:aws:iam::1234567890:role/github diff --git a/actions/setup/action.yml b/actions/setup/action.yml index f3fc930ee..6bf637d62 100644 --- a/actions/setup/action.yml +++ b/actions/setup/action.yml @@ -66,7 +66,7 @@ runs: with: version: ${{ inputs.earthly_version }} - name: Install CI CLI - uses: input-output-hk/catalyst-ci/actions/install@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/install@@feat/udc-migration if: ${{ inputs.cli_skip_install != 'true' }} with: version: ${{ inputs.cli_version }} @@ -95,7 +95,7 @@ runs: username: ${{ github.actor }} password: ${{ inputs.github_token }} - name: Setup Remote Runner - uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udcmigration + uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udc-migration if: ${{ inputs.earthly_runner_secret != '' && inputs.earthly_skip_install != 'true' }} with: secret: ${{ inputs.earthly_runner_secret }}