mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
update node ver and (possible) script vulnerability
This commit is contained in:
parent
4d8c7716fb
commit
d8b02125b7
2 changed files with 11 additions and 6 deletions
11
.github/workflows/db.yml
vendored
11
.github/workflows/db.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '14'
|
||||
node-version: '18'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
|
|
@ -39,19 +39,22 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Download database artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: database
|
||||
path: database.json
|
||||
|
||||
- name: Commit and push database.json
|
||||
- name: Commit and push database.json to another repository
|
||||
run: |
|
||||
git clone https://github.com/partofmyid/database.git db
|
||||
cd db
|
||||
git config --global user.name 'github-actions'
|
||||
git config --global user.email 'github-actions@github.com'
|
||||
git config --unset-all http.https://github.com/.extraheader
|
||||
mv ../database.json .
|
||||
git add database.json
|
||||
git commit -m 'Update database.json'
|
||||
git push
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
|
||||
6
dbgen.js
6
dbgen.js
|
|
@ -1,9 +1,11 @@
|
|||
const fs = require('fs');
|
||||
|
||||
console.log(
|
||||
JSON.stringify(
|
||||
require('fs').readdirSync('./domains').map(f =>
|
||||
fs.readdirSync('./domains').map(f =>
|
||||
[
|
||||
f.split('.').slice(0, -1).join('.'), // subdomain
|
||||
require(`./domains/${f}`).owner.username // owner
|
||||
JSON.parse(fs.readFileSync(`./domains/${f}`, 'utf8')).owner.username // owner
|
||||
]
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue