node-releases 1.1.55 → 1.1.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,35 @@
1
+ name: Nightly Sync of content
2
+
3
+ on:
4
+ schedule:
5
+ - cron: '0 3 * * *' # run daily at 3am
6
+
7
+ jobs:
8
+ checks:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+
13
+ - uses: actions/setup-node@v1
14
+ with:
15
+ node-version: "12.x"
16
+
17
+ - name: Install
18
+ run: npm ci
19
+
20
+ - name: Collect latest releases
21
+ run: npm run build
22
+
23
+ - name: Commit changes
24
+ uses: EndBug/add-and-commit@v4
25
+ with:
26
+ author_name: GitHub Action
27
+ author_email: action@github.com
28
+ message: "feat: Nightly Sync"
29
+
30
+ - name: Push changes
31
+ # Only run this on the main nodejs repo and not forks
32
+ if: github.repository == 'chicoxyzzy/node-releases'
33
+ uses: ad-m/github-push-action@v0.5.0
34
+ with:
35
+ github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -1233,5 +1233,12 @@
1233
1233
  "date": "2020-05-05",
1234
1234
  "lts": false,
1235
1235
  "security": false
1236
+ },
1237
+ {
1238
+ "name": "nodejs",
1239
+ "version": "14.3.0",
1240
+ "date": "2020-05-19",
1241
+ "lts": false,
1242
+ "security": false
1236
1243
  }
1237
1244
  ]
@@ -1,4 +1,5 @@
1
1
  [
2
+ {"version":"v14.3.0","date":"2020-05-19","files":["aix-ppc64","headers","linux-arm64","linux-armv7l","linux-ppc64le","linux-s390x","linux-x64","osx-x64-pkg","osx-x64-tar","src","win-x64-7z","win-x64-exe","win-x64-msi","win-x64-zip","win-x86-7z","win-x86-exe","win-x86-msi","win-x86-zip"],"npm":"6.14.5","v8":"8.1.307.31","uv":"1.37.0","zlib":"1.2.11","openssl":"1.1.1g","modules":"83","lts":false,"security":false},
2
3
  {"version":"v14.2.0","date":"2020-05-05","files":["aix-ppc64","headers","linux-arm64","linux-armv7l","linux-ppc64le","linux-s390x","linux-x64","osx-x64-pkg","osx-x64-tar","src","win-x64-7z","win-x64-exe","win-x64-msi","win-x64-zip","win-x86-7z","win-x86-exe","win-x86-msi","win-x86-zip"],"npm":"6.14.4","v8":"8.1.307.31","uv":"1.37.0","zlib":"1.2.11","openssl":"1.1.1g","modules":"83","lts":false,"security":false},
3
4
  {"version":"v14.1.0","date":"2020-04-29","files":["aix-ppc64","headers","linux-arm64","linux-armv7l","linux-ppc64le","linux-s390x","linux-x64","osx-x64-pkg","osx-x64-tar","src","win-x64-7z","win-x64-exe","win-x64-msi","win-x64-zip","win-x86-7z","win-x86-exe","win-x86-msi","win-x86-zip"],"npm":"6.14.4","v8":"8.1.307.31","uv":"1.37.0","zlib":"1.2.11","openssl":"1.1.1g","modules":"83","lts":false,"security":false},
4
5
  {"version":"v14.0.0","date":"2020-04-21","files":["aix-ppc64","headers","linux-arm64","linux-armv7l","linux-ppc64le","linux-s390x","linux-x64","osx-x64-pkg","osx-x64-tar","src","win-x64-7z","win-x64-exe","win-x64-msi","win-x64-zip","win-x86-7z","win-x86-exe","win-x86-msi","win-x86-zip"],"npm":"6.14.4","v8":"8.1.307.30","uv":"1.37.0","zlib":"1.2.11","openssl":"1.1.1f","modules":"83","lts":false,"security":false},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-releases",
3
- "version": "1.1.55",
3
+ "version": "1.1.56",
4
4
  "description": "Node.js releases data",
5
5
  "scripts": {
6
6
  "build": "npm run fetch && npm run process",