From c3ec05ef2ac00012944f79f553a0443a82d4ea3d Mon Sep 17 00:00:00 2001 From: bkioshn Date: Wed, 10 Apr 2024 16:52:31 +0700 Subject: [PATCH] chore: change action branch --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/pages.yml | 4 ++-- .github/workflows/publish.yml | 12 ++++++------ .github/workflows/release.yml | 8 ++++---- actions/setup/action.yml | 10 +++++----- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4d8fd69c..e5b75a783 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,7 +194,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@master + uses: input-output-hk/catalyst-ci/.github/workflows/deploy.yml@fix/ci-tools if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) needs: [publish] with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9121a1943..6f2af13b4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -71,7 +71,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-ci/actions/setup@fix/ci-tools with: aws_role_arn: ${{ inputs.aws_role_arn }} aws_region: ${{ inputs.aws_region }} diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index b3262d837..de4513af2 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -78,7 +78,7 @@ jobs: echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV echo "DEST_DIR=$DEST_DIR" >> $GITHUB_ENV - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-ci/actions/setup@fix/ci-tools with: aws_role_arn: ${{ inputs.aws_role_arn }} aws_region: ${{ inputs.aws_region }} @@ -86,7 +86,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@master + uses: input-output-hk/catalyst-ci/actions/run@fix/ci-tools id: build with: earthfile: ${{ inputs.earthfile }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 93897efcb..1ff6b755a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -88,7 +88,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-ci/actions/setup@fix/ci-tools with: configure_registries: "false" aws_ecr_registry: ${{ inputs.aws_ecr_registry }} @@ -101,7 +101,7 @@ jobs: earthly_runner_secret: ${{ secrets.earthly_runner_secret }} runner_address: ${{ secrets.earthly_runner_address }} - name: Discover Earthly files - uses: input-output-hk/catalyst-ci/actions/discover@master + uses: input-output-hk/catalyst-ci/actions/discover@fix/ci-tools id: discover with: targets: ${{ inputs.target }} @@ -138,7 +138,7 @@ jobs: echo "targets=$targets_with_space" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-ci/actions/setup@fix/ci-tools with: aws_ecr_registry: ${{ inputs.aws_ecr_registry }} aws_role_arn: ${{ inputs.aws_role_arn }} @@ -150,7 +150,7 @@ jobs: earthly_runner_secret: ${{ secrets.earthly_runner_secret }} runner_address: ${{ secrets.earthly_runner_address }} - name: Build image - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-ci/actions/run@fix/ci-tools id: build with: earthfile: ${{ matrix.earthfile }} @@ -158,7 +158,7 @@ jobs: platform: ${{ matrix.platform }} runner_address: ${{ secrets.earthly_runner_address }} - name: Push image - uses: input-output-hk/catalyst-ci/actions/push@master + uses: input-output-hk/catalyst-ci/actions/push@fix/ci-tools if: github.ref == format('refs/heads/{0}', inputs.default_branch) && !inputs.skip_publish_on_default with: image: ${{ steps.build.outputs.image }} @@ -172,7 +172,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@master + uses: input-output-hk/catalyst-ci/actions/push@fix/ci-tools 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 7415943ff..47873d3c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-ci/actions/setup@fix/ci-tools with: configure_registries: "false" aws_role_arn: ${{ inputs.aws_role_arn }} @@ -84,7 +84,7 @@ jobs: earthly_runner_secret: ${{ secrets.earthly_runner_secret }} runner_address: ${{ secrets.earthly_runner_address }} - name: Discover Earthly files - uses: input-output-hk/catalyst-ci/actions/discover@master + uses: input-output-hk/catalyst-ci/actions/discover@fix/ci-tools id: discover with: targets: ${{ inputs.target }} @@ -121,7 +121,7 @@ jobs: echo "targets=$targets_with_space" >> $GITHUB_OUTPUT - uses: actions/checkout@v3 - name: Setup CI - uses: input-output-hk/catalyst-ci/actions/setup@master + uses: input-output-hk/catalyst-ci/actions/setup@fix/ci-tools with: aws_role_arn: ${{ inputs.aws_role_arn }} aws_region: ${{ inputs.aws_region }} @@ -132,7 +132,7 @@ jobs: earthly_runner_secret: ${{ secrets.earthly_runner_secret }} runner_address: ${{ secrets.earthly_runner_address }} - name: Build artifact - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-ci/actions/run@fix/ci-tools id: build with: earthfile: ${{ matrix.earthfile }} diff --git a/actions/setup/action.yml b/actions/setup/action.yml index 079e9bc73..fea40782c 100644 --- a/actions/setup/action.yml +++ b/actions/setup/action.yml @@ -86,12 +86,12 @@ runs: with: version: ${{ inputs.earthly_version }} - name: Install CI CLI - uses: input-output-hk/catalyst-ci/actions/install@master + uses: input-output-hk/catalyst-ci/actions/install@fix/ci-tools if: ${{ inputs.cli_skip_install == 'false' && inputs.cli_version != 'local' }} with: version: ${{ inputs.updater_version }} - name: Install updater CLI - uses: input-output-hk/catalyst-ci/actions/install@master + uses: input-output-hk/catalyst-ci/actions/install@fix/ci-tools if: ${{ inputs.updater_skip_install == 'false' && inputs.updater_version != 'local' }} with: asset: updater @@ -115,13 +115,13 @@ runs: username: ${{ github.actor }} password: ${{ inputs.github_token }} - name: Setup Remote Runner - uses: input-output-hk/catalyst-ci/actions/configure-runner@master + uses: input-output-hk/catalyst-ci/actions/configure-runner@fix/ci-tools if: ${{ inputs.earthly_runner_secret != '' && inputs.earthly_skip_install != 'true' }} with: secret: ${{ inputs.earthly_runner_secret }} - name: Build CI CLI id: build-ci-artifact - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-ci/actions/run@fix/ci-tools if: ${{ inputs.cli_skip_install == 'false' && inputs.cli_version == 'local' }} with: artifact: "true" @@ -135,7 +135,7 @@ runs: run: mv '${{ steps.build-ci-artifact.outputs.artifact }}/ci' /usr/local/bin - name: Build updater CLI id: build-updater-artifact - uses: input-output-hk/catalyst-ci/actions/run@master + uses: input-output-hk/catalyst-ci/actions/run@fix/ci-tools if: ${{ inputs.updater_skip_install == 'false' && inputs.updater_version == 'local' }} with: artifact: "true"