node-osc 9.0.0 → 9.0.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.
@@ -33,7 +33,7 @@ jobs:
33
33
  # run that runs on: tag. (Using the GitHub token would
34
34
  # not run the workflow to prevent infinite recursion.)
35
35
  - name: Check out source
36
- uses: actions/checkout@v2
36
+ uses: actions/checkout@v3
37
37
  with:
38
38
  ssh-key: ${{ secrets.DEPLOY_KEY }}
39
39
 
@@ -54,7 +54,7 @@ jobs:
54
54
  git config user.signingKey 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFtQmrz647zOGumjiqGirj1G9brj/QbwJQ5S3gHRmcfl myles.borins@gmail.com'
55
55
 
56
56
  - name: bump version
57
- run: npm version ${{ github.event.inputs.version }}
57
+ run: npm version ${{ github.event.inputs.version }} --sign-git-tag
58
58
 
59
59
  - name: Push latest version
60
60
  run: git push origin main --follow-tags
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.0.0",
4
+ "version": "9.0.1",
5
5
  "exports": {
6
6
  "require": "./dist/lib/index.js",
7
7
  "default": "./lib/index.mjs"