From 7fefa8a419fd715729f4aa9eef5c406959933fe4 Mon Sep 17 00:00:00 2001 From: Sema Date: Wed, 1 Mar 2023 22:08:17 -0500 Subject: [PATCH] Actions versions and dependencies --- .github/workflows/build.yml | 12 ++++++------ package.json | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 778daf2..e9a629b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,20 +4,20 @@ jobs: build-macos: runs-on: macos-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '14.x' + node-version: '18.x' - run: npm install - run: npm test build-linux: runs-on: ubuntu-latest strategy: matrix: - node-version: [10.x, 14.x] + node-version: [10.x, 18.x] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: sudo apt-get install -y libasound2-dev diff --git a/package.json b/package.json index 310bfd3..eba4152 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "midi-test", - "version": "1.2.4", + "version": "1.2.5", "description": "Virtual MIDI ports for testing MIDI applications", "main": "index.js", "scripts": { @@ -21,9 +21,9 @@ "homepage": "https://jazz-soft.net", "bugs": "https://github.com/jazz-soft/midi-test/issues", "devDependencies": { - "eslint": "^8.30.0", - "jazz-midi": "^1.7.8", - "jzz": "^1.5.6", + "eslint": "^8.35.0", + "jazz-midi": "^1.7.9", + "jzz": "^1.6.0", "mocha": "^10.2.0" }, "gypfile": true,