Skip to content

Commit 43de07b

Browse files
Update versions.
1 parent 5320ed6 commit 43de07b

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

.github/workflows/build.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
steps:
1313
- name: Check out the code
14-
uses: actions/checkout@latest
14+
uses: actions/checkout@v4
1515

1616
- name: Set up Node.js
17-
uses: actions/setup-node@latest
17+
uses: actions/setup-node@v4
1818
with:
19-
node-version: "latest"
19+
node-version: "18"
2020

2121
- name: Install dependencies
2222
run: npm install
@@ -25,9 +25,7 @@ jobs:
2525
run: npm install -g wrangler
2626

2727
- name: Build project
28-
run: |
29-
npx wrangler deploy --dry-run --outdir=dist
30-
cp ./dist/worker.js ./_worker.js
28+
run: npm run build
3129

3230
- name: Commit and push built worker
3331
run: |

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@
1010
!.github/
1111
!.github/**
1212
!src/
13-
!src/**
13+
!src/**
14+
!package.json

package.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"dependencies": {
3+
"jose": "^5.9.4",
4+
"js-sha256": "^0.11.0",
5+
"jsonwebtoken": "^9.0.2",
6+
"tweetnacl": "^1.0.3"
7+
},
8+
"scripts": {
9+
"build": "npx wrangler deploy --dry-run --outdir=dist && cp ./dist/worker.js ./_worker.js"
10+
}
11+
}

src/worker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const defaultHttpsPorts = ['443', '8443', '2053', '2083', '2087', '2096'];
1616
let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];
1717
let dohURL = 'https://cloudflare-dns.com/dns-query';
1818
let hashPassword;
19-
let panelVersion = '2.7.1';
19+
let panelVersion = '2.7.2';
2020

2121
export default {
2222
/**

0 commit comments

Comments
 (0)