node-yara-rs

git clone git://archive.git.mtrnord.blog/MTRNord/node-yara-rs.git
Log | Files | Refs | README | LICENSE

commit 61827781fd3f14ab614827031a76ed0612792668
parent be166c1ec1e2b47e579e2db4d3a5774b73625e14
Author: MTRNord <mtrnord1@gmail.com>
Date:   Sun,  1 Oct 2023 15:59:44 +0200

Disable node 16 and 14 on x86_64 (not supported anyway) and enable node 20

Diffstat:
M.github/workflows/CI.yml | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml @@ -136,6 +136,7 @@ jobs: - '14' - '16' - '18' + - '20' runs-on: ${{ matrix.settings.host }} steps: - uses: actions/checkout@v3 @@ -167,9 +168,11 @@ jobs: fail-fast: false matrix: node: - - '14' - - '16' + # 14 and 16 are broken apparently + #- '14' + #- '16' - '18' + - '20' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -203,6 +206,7 @@ jobs: - '14' - '16' - '18' + - '20' runs-on: arm64 steps: - uses: actions/checkout@v3