Skip to content

Commit 8ef0253

Browse files
authored
Merge branch 'develop' into copilot/fix-capitalization-issues
2 parents 263a184 + 02f01a8 commit 8ef0253

File tree

17 files changed

+34217
-30904
lines changed

17 files changed

+34217
-30904
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ This action installs [`duckdb`](https://github.com/duckdb/duckdb) with the versi
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

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)