From 7181c22119a1246a8b5480d4b71ca61076b4fabb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Duhen?= Date: Thu, 24 Oct 2024 11:59:32 +0200 Subject: [PATCH 1/3] feat(ci): update node to next LTS (v22) --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c8d65507f8..d62888d7ca 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -20,10 +20,10 @@ jobs: # Use specific Node.js version - uses: actions/checkout@v3 - - name: Use Node.js 18.x + - name: Use Node.js 22.x uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 22.x cache: 'npm' # Install packages From 2c50c17367c74ace55a966a2e31658d23d482f79 Mon Sep 17 00:00:00 2001 From: ftoromanoff Date: Thu, 24 Oct 2024 15:48:43 +0200 Subject: [PATCH 2/3] feat(ci): update to v4 --- .github/workflows/integration.yml | 32 +++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index d62888d7ca..d9eb0c4183 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -19,9 +19,9 @@ jobs: steps: # Use specific Node.js version - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js 22.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 22.x cache: 'npm' @@ -84,11 +84,11 @@ jobs: steps: # Use specific Node.js version - - uses: actions/checkout@v3 - - name: Use Node.js 18.x - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - name: Use Node.js 22.x + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 22.x cache: 'npm' # Install packages @@ -114,11 +114,11 @@ jobs: steps: # Use specific Node.js version - - uses: actions/checkout@v3 - - name: Use Node.js 18.x - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - name: Use Node.js 22.x + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 22.x cache: 'npm' # Install packages @@ -149,7 +149,7 @@ jobs: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # fetch all branches fetch-depth: 0 @@ -157,7 +157,7 @@ jobs: # Configure git user for later command induced commits - uses: fregante/setup-git-user@v1 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 registry-url: https://registry.npmjs.org/ @@ -261,12 +261,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Use Node.js 18.x - uses: actions/setup-node@v3 + - name: Use Node.js 22.x + uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 22.x - name: Message commit run: echo "is RELEASE => ${{ github.event.head_commit.message }} !!" From 8e1a56caef4aef19c1dc8e62c3e936383078db9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Duhen?= <45125768+HoloTheDrunk@users.noreply.github.com> Date: Thu, 14 Nov 2024 11:44:54 +0100 Subject: [PATCH 3/3] fix(ci): bump setup-nodes' node version --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index d9eb0c4183..bcb91e0cb5 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -159,7 +159,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 22.x registry-url: https://registry.npmjs.org/ - run: npm ci