Skip to content

Commit

Permalink
Upgrade the default version of sqlfluff to 0.9.1 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-iskw authored Jan 11, 2022
1 parent a940467 commit 362d575
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
sqlfluff: ["0.8.2", "0.9.0"]
sqlfluff: ["0.8.2", "0.9.0", "0.9.1"]
steps:
- uses: actions/checkout@v2
- uses: ./
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
sqlfluff: ["0.8.2", "0.9.0"]
sqlfluff: ["0.8.2", "0.9.0", "0.9.1"]
steps:
- uses: actions/checkout@v2
- uses: ./
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
sqlfluff: ["0.8.2", "0.9.0"]
sqlfluff: ["0.8.2", "0.9.0", "0.9.1"]
steps:
- uses: actions/checkout@v2
- uses: ./
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The action automatically leaves comments about SQL violation using [reviewdog](h

## NOTE
If you use dbt v0, `sqlfluff_version` has to be `0.8.2` because `sqlfluff==0.8.2` doesn't support dbt v1.
If you use dbt v1, `sqlfluff_version` can be `0.9.0` which is the latest version at the time of writing the document.
If you use dbt v1, `sqlfluff_version` can be `0.9.0` or later.

## Input

Expand Down Expand Up @@ -60,7 +60,7 @@ inputs:
sqlfluff version. Use the latest version if not set.
It must be 0.8.2 or later.
required: false
default: '0.9.0'
default: '0.9.1'
paths:
description: |
PATH is the path to a sql file or directory to lint.
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
sqlfluff_version: "0.9.0"
sqlfluff_version: "0.9.1"
config: "${{ github.workspace }}/.sqlfluff"
paths: '${{ github.workspace }}/models'
- name: 'Show outputs (Optional)'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ inputs:
sqlfluff version. Use the latest version if not set.
It must be 0.8.2 or later.
required: false
default: '0.9.0'
default: '0.9.1'
paths:
description: |
PATH is the path to a sql file or directory to lint.
Expand Down

0 comments on commit 362d575

Please sign in to comment.