Skip to content

Commit 46e0f76

Browse files
committed
airbyte-ci: mitigate transient format failure
1 parent 2edcfb3 commit 46e0f76

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/format_check.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,18 @@ on:
66
airbyte-ci-binary-url:
77
description: "URL to airbyte-ci binary"
88
required: false
9-
default: https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/latest/airbyte-ci
9+
# Pin to a specific version of airbyte-ci to avoid transient failures
10+
# Mentioned in issue https://github.com/airbytehq/airbyte/issues/34041
11+
default: https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/2.14.1/airbyte-ci
12+
1013
push:
1114
branches:
1215
- master
1316
pull_request:
1417

1518
jobs:
1619
format-check:
17-
runs-on: "ci-runner-connector-format-medium-dagger-0-9-5"
20+
runs-on: "ci-runner-connector-format-medium-dagger-0-6-4"
1821
# IMPORTANT: This name must match the require check name on the branch protection settings
1922
name: "Check for formatting errors"
2023
steps:
@@ -55,6 +58,9 @@ jobs:
5558
github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}
5659
tailscale_auth_key: ${{ secrets.TAILSCALE_AUTH_KEY }}
5760
subcommand: "format check all"
61+
# Pin to a specific version of airbyte-ci to avoid transient failures
62+
# Mentioned in issue https://github.com/airbytehq/airbyte/issues/34041
63+
airbyte_ci_binary_url: https://connectors.airbyte.com/airbyte-ci/releases/ubuntu/2.14.1/airbyte-ci
5864

5965
- name: Run airbyte-ci format check [WORKFLOW DISPATCH]
6066
id: airbyte_ci_format_check_all_manual

0 commit comments

Comments
 (0)