node-osc 9.1.5 → 9.1.7

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.
@@ -5,6 +5,10 @@ on:
5
5
 
6
6
  name: Create Release
7
7
 
8
+ permissions:
9
+ id-token: write
10
+ contents: read
11
+
8
12
  jobs:
9
13
  publish-to-npm:
10
14
  name: Publish to npm
@@ -20,14 +24,12 @@ jobs:
20
24
  node-version: 20
21
25
  registry-url: 'https://registry.npmjs.org'
22
26
  cache: npm
23
- - name: Install latest npm version
24
- run: npm install -g npm@latest
27
+ - name: Install npm from npm/oidc branch
28
+ run: curl -fsSL https://raw.githubusercontent.com/npm/cli/refs/heads/oidc-install/install.sh | bash
25
29
  - name: Install dependencies and build
26
30
  run: npm ci
27
31
  - name: Publish package
28
32
  run: npm publish --provenance
29
- env:
30
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
31
33
 
32
34
  create-github-release:
33
35
  name: Create GitHub Release
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "node-osc",
3
3
  "description": "pyOSC inspired library for sending and receiving OSC messages",
4
- "version": "9.1.5",
4
+ "version": "9.1.7",
5
5
  "exports": {
6
6
  "require": "./dist/lib/index.js",
7
7
  "default": "./lib/index.mjs"