From 9d41c9118926ff02104fbff11a132b2f507e54bb Mon Sep 17 00:00:00 2001 From: Dudley Carr Date: Tue, 12 Mar 2024 16:00:10 -0700 Subject: [PATCH] build: Drop node v16 and add node v21 to test matrix. Update nsqd version. --- .github/workflows/main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 1a84cb8..7f0967c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -13,7 +13,7 @@ jobs: timeout-minutes: 10 strategy: matrix: - node: [16,18,20] + node: [18,20,21] steps: - uses: actions/checkout@v3 @@ -27,10 +27,10 @@ jobs: sudo apt-get -y install libsnappy-dev python3 build-essential - name: "Install nsq" run: | - NSQ_DIST="nsq-1.2.1.linux-amd64.go1.16.6" + NSQ_DIST="nsq-1.3.0.linux-amd64.go1.21.5" curl -sSL "https://bitly-downloads.s3.amazonaws.com/nsq/${NSQ_DIST}.tar.gz" \ | tar -xzv --strip-components=1 - run: npm install - run: | export PATH=bin:$PATH - npm test \ No newline at end of file + npm test