From 74254a437f00531eec82ddc7ebfcf85d99960169 Mon Sep 17 00:00:00 2001 From: Siim Kallas Date: Tue, 2 Jul 2024 12:07:25 +0300 Subject: [PATCH] move centos checks to node 18 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a59eecf..4ba86634 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -214,7 +214,7 @@ jobs: strategy: fail-fast: false matrix: - nodejs: [16] + nodejs: [18] include: - container: 'centos:7' - cmd: 'curl -sL https://rpm.nodesource.com/setup_${NODE_VERSION}.x | bash - && yum install -y nodejs gcc-c++ make' @@ -241,10 +241,10 @@ jobs: fail-fast: false matrix: container: ['centos:7'] - nodejs: [16] + nodejs: [18] include: - container: 'centos:7' - nodejs: 16 + nodejs: 18 cmd: 'curl -sL https://rpm.nodesource.com/setup_${NODE_VERSION}.x | bash - && yum install -y nodejs gcc-c++ make' #cmd: 'yum install https://rpm.nodesource.com/pub_16.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm -y && yum install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1' name: Centos check - ${{ matrix.container }} - Node.js ${{ matrix.nodejs }}