Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/bigquery_dry_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id-token: 'write'
steps:
- name: Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v7

- id: 'auth'
uses: 'google-github-actions/auth@v2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-duckdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
container: python:3.12

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install tooling
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
PGDATABASE: postgres

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install tooling
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/concepts-duckdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container: python:3.12

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install tooling
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/concepts-psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
PGDATABASE: postgres

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install tooling
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/equivalence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
PGDATABASE: postgres

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install tooling
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_sqlfluff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
# Full history so we can diff the PR branch against its base
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id-token: 'write'
steps:
- name: Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v7

- id: 'auth'
uses: 'google-github-actions/auth@v2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Download demo data
uses: ./.github/actions/download-demo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease_bigquery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
id-token: 'write'
steps:
- name: Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v7

- id: 'auth'
uses: 'google-github-actions/auth@v2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regenerate_dialects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
app-id: ${{ secrets.TRANSPILE_BOT_APP_ID }}
private-key: ${{ secrets.TRANSPILE_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
token: ${{ steps.app-token.outputs.token }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sql_syntax_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
syntax-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v5
with:
python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Check out repository code
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Python dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/transpile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Transpile unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v5
with:
python-version: "3.10"
Expand All @@ -27,7 +27,7 @@ jobs:
contents: read
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v5
with:
python-version: "3.12"
Expand Down
Loading