Skip to content

Commit 75c8f32

Browse files
authored
chore: Update dependencies
chore: Update dependencies
2 parents 17b735f + 8f594c6 commit 75c8f32

27 files changed

Lines changed: 2035 additions & 3586 deletions

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.github/workflows/main.yml

Lines changed: 25 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,56 +5,53 @@ name: CI
55
jobs:
66
node-jdbc:
77
name: node-jdbc
8-
runs-on: ${{ matrix.os }}
8+
runs-on: ubuntu-latest
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os:
13-
- ubuntu-latest
1412
node_version:
15-
- 16
1613
- 18
1714
- 20
15+
distribution:
16+
- oracle
17+
- temurin
18+
- microsoft
19+
- corretto
20+
- zulu
1821
java_version:
1922
- 8
20-
- 9
21-
- 10
2223
- 11
23-
- 12
24-
- 13
25-
- 14
26-
- 15
27-
# - 21
24+
- 17
25+
- 21
2826
arch:
2927
- x64
28+
exclude:
29+
- distribution: oracle
30+
java_version: 8
31+
- distribution: oracle
32+
java_version: 11
33+
- distribution: microsoft
34+
java_version: 8
3035
steps:
31-
- name: 🧶 Get yarn cache directory path 🧶
32-
id: yarn-cache-dir-path
33-
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
34-
- name: 💵 Cache 💵
35-
uses: actions/cache@v2
36-
id: yarn-cache
37-
with:
38-
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
39-
key: ${{ runner.os }}-${{ matrix.node_version }}-yarn-${{ hashFiles('**/yarn.lock') }}
40-
restore-keys: |
41-
${{ runner.os }}-${{ matrix.node_version }}-yarn-
42-
${{ runner.os }}-yarn-
4336
- name: ☑️ Checkout ☑️
44-
uses: actions/checkout@v2
37+
uses: actions/checkout@v4
4538
- name: ☕ Java ☕
46-
uses: actions/setup-java@v1
39+
uses: actions/setup-java@v4
4740
with:
41+
distribution: ${{ matrix.distribution }}
4842
java-version: ${{ matrix.java_version }}
4943
- name: 🐍 Python 🐍
50-
uses: actions/setup-python@v2
44+
uses: actions/setup-python@v5
5145
with:
5246
python-version: 3.9
5347
- name: 🔋 Node 🔋
54-
uses: actions/setup-node@v2
48+
uses: actions/setup-node@v4
5549
with:
5650
node-version: ${{ matrix.node_version }}
5751
- name: 💾 Install 💾
5852
run: yarn install
59-
- name: 🧪 Test (Node ${{ matrix.node_version }}, Java ${{ matrix.java_version }}) 🧪
53+
- name: Set up new drivers
54+
run: cp drivers-10.17/* drivers
55+
if: ${{ matrix.java_version > 20 }}
56+
- name: 🧪 Test (Node ${{ matrix.node_version }}, Java ${{ matrix.java_version }}, ${{ matrix.distribution }}) 🧪
6057
run: yarn test

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
17-
- name: Use Node.js 16.x
18-
uses: actions/setup-node@v3
16+
uses: actions/checkout@v4
17+
- name: Use Node.js 20.x
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: 16.x
20+
node-version: 20.x
2121
- name: Yarn install
2222
uses: borales/actions-yarn@v4
2323
with:
2424
cmd: install --frozen-lockfile
2525
- name: Set NPM token
26-
run: echo //registry.npmjs.org/:_authToken=$NPM_TOKEN > ~/.npmrc
26+
run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
2727
env:
2828
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2929
- name: NPM publish

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ node_modules
55
mydb.*
66
.idea/
77
.DS_store
8+
.env
9+

drivers-10.17/derby.jar

3.38 MB
Binary file not shown.

drivers-10.17/derbyclient.jar

587 KB
Binary file not shown.

drivers-10.17/derbynet.jar

267 KB
Binary file not shown.
75 KB
Binary file not shown.

drivers-10.17/derbyrun.jar

11 KB
Binary file not shown.

drivers-10.17/derbyshared.jar

86.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)