Skip to content

Commit b48ab10

Browse files
authored
Merge pull request #70 from runk/runk-patch-3
feat: Trigger release
2 parents e184197 + 351501a commit b48ab10

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: Build
33
on:
44
push:
55
branches: [master]
6-
pull_request_target:
6+
pull_request:
77
branches: ['*']
8-
types: [opened, synchronize]
8+
# types: [opened, synchronize]
99

1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313

1414
strategy:
1515
matrix:
16-
node-version: [16.x, 18.x, 20.x, 22.x]
16+
node-version: [18.x, 20.x, 22.x]
1717

1818
steps:
1919
- uses: actions/checkout@v4

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2022 Dmitry Shirokov
1+
Copyright 2025 Dmitry Shirokov
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"homepage": "https://github.com/runk/node-geolite2#readme",
3232
"dependencies": {
33-
"node-fetch": "^3.0.0",
33+
"node-fetch": "^2.7.0",
3434
"tar": "^7.0.0"
3535
},
3636
"devDependencies": {

scripts/postinstall.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const zlib = require('zlib');
33
const tar = require('tar');
44
const path = require('path');
55
const fetch = require('node-fetch');
6+
67
const { getAccountId, getLicense, getSelectedDbs } = require('../utils');
78

89
let licenseKey;

0 commit comments

Comments
 (0)