Skip to content

Commit 875d34c

Browse files
authored
Merge pull request #242 from opt-nc/develop
Develop
2 parents 666c0ff + 457a5a5 commit 875d34c

File tree

18 files changed

+34223
-30910
lines changed

18 files changed

+34223
-30910
lines changed

.github/workflows/dependabot-dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Dependabot post-update
22
on:
33
pull_request_target:
44
types: [opened, synchronize, reopened]
5-
branches: develop
5+
branches: [develop]
66

77
concurrency:
88
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
@@ -24,7 +24,7 @@ jobs:
2424
2525
- uses: actions/setup-node@v6
2626
with:
27-
node-version: '16'
27+
node-version: '24'
2828
cache: 'npm'
2929

3030
- run: npm install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v6
1212
- uses: actions/setup-node@v6
1313
with:
14-
node-version: 16
14+
node-version: 24
1515
cache: 'npm'
1616

1717
- name: 🧪 Build

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
- uses: actions/checkout@v6
1111
- uses: actions/setup-node@v6
1212
with:
13-
node-version: 16
13+
node-version: 24
1414
cache: 'npm'
1515
- run: npm ci

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.idea/
22
node_modules
3+
build

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@
33
[![🚀 Release](https://github.com/opt-nc/setup-duckdb-action/actions/workflows/release.yml/badge.svg)](https://github.com/opt-nc/setup-duckdb-action/actions/workflows/release.yml)
44

55

6-
# ℹ️ Setup Duckdb Action
6+
# ℹ️ Setup DuckDB Action
77

8-
This action installs [`duckdb`](https://github.com/duckdb/duckdb) with the version provided in input.
8+
This action installs [`duckdb`](https://github.com/duckdb/duckdb) with the version provided as input.
99

1010
## 📜 Inputs
1111

1212
### `version`
1313

14-
**Not Required** The version you want to install. If no version defined, the latest version will be installed.
14+
**Not Required** The version you want to install. If no version is defined, the latest version will be installed.
1515

1616
## 🚀 Example usage
1717

1818
```yaml
19-
uses: opt-nc/setup-duckdb-action@v1.2.0
19+
uses: opt-nc/setup-duckdb-action@v1.2.1
2020
with:
21-
version: v1.4.3
21+
version: v1.4.4
2222
```
2323
2424
```yaml

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Supported Versions
44

5-
This is an open source project that is provided as-is without warrenty or liability.
6-
As such no supportability commitment. The maintainers will do the best they can to address any report promptly and responsibly.
5+
This is an open source project that is provided as-is without warranty or liability.
6+
As such, there is no supportability commitment. The maintainers will do the best they can to address any report promptly and responsibly.
77

88
Hence, we'll focus on maintaining the latest version.
99

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ inputs:
99
required: false
1010
default: 'latest'
1111
runs:
12-
using: 'node16'
12+
using: 'node24'
1313
main: 'dist/index.js'

0 commit comments

Comments
 (0)