scv-esm 1.117.0 → 1.121.0

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.
@@ -2,18 +2,21 @@ name: schedule-actions
2
2
  on:
3
3
  schedule:
4
4
  - cron: 0 2,10,18 * * *
5
+ workflow_dispatch: # Allows manual trigger from Github UI
5
6
  jobs:
6
7
  build-job:
8
+ timeout-minutes: 30
7
9
  runs-on: ubuntu-latest
10
+ permissions:
11
+ id-token: write # OIDC npm
12
+ contents: write
8
13
  steps:
9
- - uses: actions/checkout@v4
10
- - uses: actions/setup-node@v4
14
+ - uses: actions/checkout@v6
15
+ - uses: actions/setup-node@v6
11
16
  with:
12
17
  node-version: '20.x'
13
- registry-url: 'https://registry.npmjs.org'
18
+ #registry-url: 'https://registry.npmjs.org'
14
19
  - run: scripts/install
15
20
  - run: git config --global user.name github-actions
16
21
  - run: git config --global user.email github-actions@github.com
17
22
  - run: npm run schedule-action
18
- env:
19
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/npm_readme.md ADDED
@@ -0,0 +1,5 @@
1
+ ## Hypothesis: NPM ignores version changes without content changes
2
+ This file exists to fool npm into thinking something has changed.
3
+ So if you need to fool npm, just change something in this file.
4
+
5
+ Tue Dec 16 09:41:32 PST 2025
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scv-esm",
3
- "version": "1.117.0",
3
+ "version": "1.121.0",
4
4
  "description": "SuttaCentral Voice ES Module",
5
5
  "main": "index.js",
6
6
  "module": "main.mjs",
@@ -29,6 +29,6 @@
29
29
  "mocha": "^11.0.1",
30
30
  "scv-bilara": "^3.182.62",
31
31
  "should": "^13.2.3",
32
- "suttacentral-api": "^2.17.71"
32
+ "suttacentral-api": "^2.18.0"
33
33
  }
34
34
  }