diff --git a/.github/workflows/ci_lint_package.yml b/.github/workflows/ci_lint_package.yml index 111f6357..9f1508f3 100644 --- a/.github/workflows/ci_lint_package.yml +++ b/.github/workflows/ci_lint_package.yml @@ -43,8 +43,14 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} # Check out the code of the PR + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: "3.9.x" + architecture: "x64" + - name: Install Python packages - run: python -m pip install dbt-snowflake~=1.6.0 sqlfluff-templater-dbt~=2.0.2 + run: python -m pip install dbt-snowflake~=1.6.0 sqlfluff-templater-dbt~=2.3.2 - name: Test database connection run: dbt debug diff --git a/.github/workflows/main_lint_package.yml b/.github/workflows/main_lint_package.yml index 45985ec2..7747f565 100644 --- a/.github/workflows/main_lint_package.yml +++ b/.github/workflows/main_lint_package.yml @@ -39,8 +39,14 @@ jobs: - name: Checkout branch uses: actions/checkout@v3 + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: "3.9.x" + architecture: "x64" + - name: Install Python packages - run: python -m pip install dbt-snowflake~=1.6.0 sqlfluff-templater-dbt~=2.0.2 + run: python -m pip install dbt-snowflake~=1.6.0 sqlfluff-templater-dbt~=2.3.2 - name: Test database connection run: dbt debug