From fe26227193bd309c5f92c72908d5a6703e03c801 Mon Sep 17 00:00:00 2001 From: Augustin Date: Thu, 25 Jan 2024 12:09:41 +0100 Subject: [PATCH] airbyte-ci: disable update check in CI (#34489) --- .github/actions/airbyte-ci-requirements/action.yml | 2 +- .github/actions/run-dagger-pipeline/action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/airbyte-ci-requirements/action.yml b/.github/actions/airbyte-ci-requirements/action.yml index d12a7c1b6b10a..cb3ae4688c48d 100644 --- a/.github/actions/airbyte-ci-requirements/action.yml +++ b/.github/actions/airbyte-ci-requirements/action.yml @@ -84,7 +84,7 @@ runs: id: get-dagger-version shell: bash run: | - dagger_version=$(airbyte-ci ${{ inputs.airbyte_ci_command }} --ci-requirements | tail -n 1 | jq -r '.dagger_version') + dagger_version=$(airbyte-ci --disable-update-check ${{ inputs.airbyte_ci_command }} --ci-requirements | tail -n 1 | jq -r '.dagger_version') echo "dagger_version=${dagger_version}" >> "$GITHUB_OUTPUT" - name: Get runner name diff --git a/.github/actions/run-dagger-pipeline/action.yml b/.github/actions/run-dagger-pipeline/action.yml index 5ba6faa69a479..55c37cd2e4460 100644 --- a/.github/actions/run-dagger-pipeline/action.yml +++ b/.github/actions/run-dagger-pipeline/action.yml @@ -157,7 +157,7 @@ runs: shell: bash run: | export _EXPERIMENTAL_DAGGER_RUNNER_HOST="unix:///var/run/buildkit/buildkitd.sock" - airbyte-ci --disable-dagger-run --is-ci --gha-workflow-run-id=${{ github.run_id }} ${{ inputs.subcommand }} ${{ inputs.options }} + airbyte-ci --disable-update-check --disable-dagger-run --is-ci --gha-workflow-run-id=${{ github.run_id }} ${{ inputs.subcommand }} ${{ inputs.options }} env: CI_CONTEXT: "${{ inputs.context }}" CI_GIT_BRANCH: ${{ inputs.git_branch || github.head_ref }}