From 35aaef864b6f20b303451617d6e9211d35c43e0b Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Mon, 13 Apr 2026 09:59:21 -0700 Subject: [PATCH 1/6] Use checkout@v6 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7fdf34b..304bab5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Install the latest version of dbc CLI: ```yaml steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: columnar-tech/setup-dbc@v1 - run: dbc --version ``` @@ -64,7 +64,7 @@ Install drivers from a `dbc.toml` file: ```yaml steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: columnar-tech/setup-dbc@v1 with: driver-list-file: 'dbc.toml' @@ -74,7 +74,7 @@ steps: ```yaml steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: columnar-tech/setup-dbc@v1 with: driver-list-file: 'config/custom-dbc.toml' @@ -135,7 +135,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: columnar-tech/setup-dbc@v1 with: @@ -161,7 +161,7 @@ jobs: driver: [postgresql, mysql, sqlite] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: columnar-tech/setup-dbc@v1 with: From 5e9115e37edc1d299c1886a7c9d363e6ebd5f09a Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Mon, 13 Apr 2026 09:59:49 -0700 Subject: [PATCH 2/6] Fix bad link to dbc, just call dbc "dbc" not "dbc CLI" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 304bab5..9d58871 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Setup dbc Action -GitHub Action to install the [dbc CLI](https://dbc.columnar.tech), authenticate with optional API key, and install drivers. +GitHub Action to install [dbc](https://columnar.tech/dbc), authenticate with optional API key, and install drivers. ## Features From 71e4a8d287d72c47216d6db8355eee4edea1b480 Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Mon, 13 Apr 2026 10:03:12 -0700 Subject: [PATCH 3/6] Tweak wording in readme tag line --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d58871..c03c6ad 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Setup dbc Action -GitHub Action to install [dbc](https://columnar.tech/dbc), authenticate with optional API key, and install drivers. +GitHub Action to set up [dbc](https://columnar.tech/dbc) and install drivers in CI. ## Features From 15a267576e6d06c3968bf10e30bbed9e7e32139e Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Mon, 13 Apr 2026 10:16:14 -0700 Subject: [PATCH 4/6] Add link to private drivers guide --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c03c6ad..becb6f4 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ steps: ### With Private Drivers -Authenticate with API key for private drivers: +Authenticate with API key for [private drivers](https://docs.columnar.tech/dbc/guides/private_drivers/): ```yaml steps: From 0bdcf253fdd7448993d088ee4e058e12c601c7c5 Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Mon, 13 Apr 2026 10:16:34 -0700 Subject: [PATCH 5/6] Tweak driver list usage structure --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index becb6f4..1768207 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,17 @@ steps: drivers: 'oracle,teradata,postgresql' ``` -### Using Config File +### Installing Drivers From A Driver List -Install drivers from a `dbc.toml` file: +If `dbc.toml` is present at the workspace root, the action will run `dbc sync` automatically: + +```yaml +steps: + - uses: actions/checkout@v6 + - uses: columnar-tech/setup-dbc@v1 +``` + +The above is equivalent to: ```yaml steps: @@ -70,7 +78,9 @@ steps: driver-list-file: 'dbc.toml' ``` -### Custom Config File Path +See [Using a Driver List](https://docs.columnar.tech/dbc/guides/driver_list/) to learn more about driver list files. + +### Custom Driver List Path ```yaml steps: From 4ea1367c05ef8a9ab75f79faf5f33e9aaba0ba32 Mon Sep 17 00:00:00 2001 From: Bryce Mecum Date: Mon, 13 Apr 2026 10:17:29 -0700 Subject: [PATCH 6/6] Change action author to Columnar --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 148894d..4a511f0 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,6 @@ name: 'Setup DBC' description: 'Install dbc CLI, authenticate, and install drivers' -author: 'zeroshade' +author: 'Columnar' inputs: version: