From 5606201d216b8b915ce1f8935148c21293591b3e Mon Sep 17 00:00:00 2001 From: Piyush Singh Date: Mon, 17 Aug 2026 13:59:45 +0530 Subject: [PATCH] fix(ci-cd): bump github actions to node 24 runtimes Clears the "Node.js 20 is deprecated" GitHub Actions annotation on the release workflow. - bump actions/checkout from v3 to v5 (using: node24) - bump actions/setup-node from v3 to v5 (using: node24) - set node-version from '20.x' to '24.x' in the Release job GH-27 --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2cf92ac..84cf444 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,16 +8,16 @@ jobs: Release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: # fetch-depth is necessary to get all tags # otherwise lerna can't detect the changes and will end up bumping the versions for all packages fetch-depth: 0 token: ${{ secrets.RELEASE_COMMIT_GH_PAT }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v5 with: - node-version: '20.x' + node-version: '24.x' - name: Configure CI Git User run: | git config --global user.name $CONFIG_USERNAME