Skip to content

Commit

Permalink
Merge 2c74189 into 1390b99
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptcoded committed Feb 2, 2024
2 parents 1390b99 + 2c74189 commit d69735a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: minor
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v4
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest

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

- name: Use Node.js 18
uses: actions/setup-node@v1
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version-file: .nvmrc

- run: npm ci

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Import scriptbot's GPG key for signing commits
Expand All @@ -35,9 +35,9 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "lts/*"
node-version-file: .nvmrc
- name: Install dependencies
run: npm clean-install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Expand Up @@ -12,13 +12,13 @@ jobs:
matrix:
# If you change these, don't forget to update carryforward in the finish
# step as well.
node-version: [14, 16, 18]
node-version: [14, 16, 18, 20]

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

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -43,4 +43,4 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
carryforward: "14,16,18"
carryforward: "14,16,18,20"
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
v18.12
v20.11
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ and there are no external dependencies 😉

## Installation

sql-highlight is tested to work with Node.js 14, 16 and 18.
sql-highlight is tested to work with Node.js 16, 18 and 20.

Install with Yarn:
```bash
Expand Down

0 comments on commit d69735a

Please sign in to comment.