Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-connector-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
pat: ${{ steps.variables.outputs.pat }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check PAT rate limits
id: variables
run: |
Expand All @@ -54,7 +54,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
body: |
> :clock2: ${{github.event.inputs.connector}} https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
environment: more-secrets
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/connector_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Java
uses: actions/setup-java@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
echo -e "$CHANGELOG" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Get Version
id: get_version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
environment: more-secrets
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
# check all files on master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fe-validate-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/setup-java@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/gke-kube-test-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
pat: ${{ steps.variables.outputs.pat }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check PAT rate limits
id: variables
run: |
Expand All @@ -42,7 +42,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand All @@ -69,7 +69,7 @@ jobs:
> :clock2: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}

- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check images exist
run: ./tools/bin/check_images_exist.sh all
Expand All @@ -39,7 +39,7 @@ jobs:
frontend: ${{ steps.filter.outputs.frontend }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: filter
with:
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
pat: ${{ steps.variables.outputs.pat }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check PAT rate limits
id: variables
run: |
Expand All @@ -89,7 +89,7 @@ jobs:
# needs: changes
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - run: |
# echo '${{ toJSON(needs) }}'

Expand All @@ -103,7 +103,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache Build Artifacts
uses: ./.github/actions/cache-build-artifacts
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Start AWS Runner
id: start-ec2-runner
uses: ./.github/actions/start-aws-runner
Expand All @@ -183,7 +183,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache Build Artifacts
uses: ./.github/actions/cache-build-artifacts
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Start AWS Runner
id: start-ec2-runner
uses: ./.github/actions/start-aws-runner
Expand All @@ -302,7 +302,7 @@ jobs:
runs-on: ${{ needs.start-frontend-runner.outputs.label }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache Build Artifacts
uses: ./.github/actions/cache-build-artifacts
Expand Down Expand Up @@ -341,7 +341,7 @@ jobs:
timeout-minutes: 120
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache Build Artifacts
uses: ./.github/actions/cache-build-artifacts
Expand Down Expand Up @@ -423,7 +423,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Start AWS Runner
id: start-ec2-runner
uses: ./.github/actions/start-aws-runner
Expand All @@ -439,7 +439,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache Build Artifacts
uses: ./.github/actions/cache-build-artifacts
Expand Down Expand Up @@ -558,7 +558,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Start AWS Runner
id: start-ec2-runner
uses: ./.github/actions/start-aws-runner
Expand All @@ -577,7 +577,7 @@ jobs:
timeout-minutes: 90
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache Build Artifacts
uses: ./.github/actions/cache-build-artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-cdk-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
java-version: "17"
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
echo ${{ github.event.inputs.dry-run }}
echo "pypi_url=https://test.pypi.org/legacy/" >> $GITHUB_ENV
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/publish-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
pat: ${{ steps.variables.outputs.pat }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check PAT rate limits
id: variables
run: |
Expand All @@ -58,7 +58,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand All @@ -80,7 +80,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand All @@ -102,7 +102,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand All @@ -124,7 +124,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand All @@ -146,7 +146,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
if: steps.regex.outputs.first_match != matrix.connector
run: echo "The connector provided has an invalid format!" && exit 1
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-connector-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
pat: ${{ steps.variables.outputs.pat }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check PAT rate limits
id: variables
run: |
Expand All @@ -55,7 +55,7 @@ jobs:
# ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
# steps:
# - name: Checkout Airbyte
# uses: actions/checkout@v2
# uses: actions/checkout@v4
# with:
# repository: ${{ github.event.inputs.repo }}
# ref: ${{ github.event.inputs.gitref }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
# body: |
# > :clock2: ${{github.event.inputs.connector}} https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
# - name: Checkout Airbyte
# uses: actions/checkout@v2
# uses: actions/checkout@v4
# with:
# repository: ${{ github.event.inputs.repo }}
# ref: ${{ github.event.inputs.gitref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-external-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
pat: ${{ steps.variables.outputs.pat }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Check PAT rate limits
id: variables
run: |
Expand All @@ -49,7 +49,7 @@ jobs:
ec2-instance-id: ${{ steps.start-ec2-runner.outputs.ec2-instance-id }}
steps:
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ gituhb.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
body: |
> :clock2: ${{github.event.inputs.connector}} https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
- name: Checkout Airbyte
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ gituhb.event.inputs.repo }}
ref: ${{ github.event.inputs.gitref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
outputs:
next-version: ${{ steps.sem-ver.outputs.version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -36,12 +36,12 @@ jobs:
runs-on: ubuntu-22.04
needs: ["generate-semantic-version"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: "airbyte"
fetch-depth: 0

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: "airbytehq/helm-charts"
token: ${{ secrets.OCTAVIA_PAT }}
Expand Down
Loading