ts-node-client 3.3.0 → 3.3.1

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,31 @@
1
+ name: Scan dependencies
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - '*.*.*'
7
+
8
+ jobs:
9
+ scan:
10
+
11
+ runs-on: ubuntu-latest
12
+
13
+ strategy:
14
+ matrix:
15
+ include:
16
+ - node-version: 20.x
17
+
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ - name: Use Node.js ${{ matrix.node-version }}
21
+ uses: actions/setup-node@v3
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ registry-url: 'https://registry.npmjs.org'
25
+ - name: Install yarn
26
+ run: npm install --global yarn
27
+ - name: Install dependencies
28
+ run: yarn
29
+ - name: Scan dependencies
30
+ run: yarn node ./bin/ts-node-client.js --branch main --tag $GITHUB_REF_NAME --project Scanner --url https://app.trustsource.io/ --apiKey ${{ secrets.TS_TOKEN }}
31
+
package/CHANGELOG.md CHANGED
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8
8
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
 
10
10
 
11
+ ## 3.3.1 - 2024-03-29
12
+
13
+ ### Changed
14
+ * automate dependency scans
15
+
16
+
11
17
  ## 3.3.0 - 2024-03-27
12
18
 
13
19
  ### Changed
package/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ts-node-client",
3
- "version": "3.3.0",
3
+ "version": "3.3.1",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "ts-node-client",
9
- "version": "3.3.0",
9
+ "version": "3.3.1",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@yarnpkg/lockfile": "1.1.0",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ts-node-client",
3
3
  "description": "npm / node module to transfer dependency information to TrustSource server.",
4
- "version": "3.3.0",
4
+ "version": "3.3.1",
5
5
  "homepage": "https://app.trustsource.io/",
6
6
  "author": {
7
7
  "name": "Oleksandr Dmukhovskyi",