From 08f261b0f0841110f0d0bf00a624e6b531c22fdd Mon Sep 17 00:00:00 2001 From: Ashwin Bhatkal Date: Wed, 28 Jan 2026 12:48:11 +0530 Subject: [PATCH] chore: add node version in gor yaml files (#10128) --- .github/workflows/gor-signoz-community.yaml | 12 ++++++++---- .github/workflows/gor-signoz.yaml | 4 ++++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gor-signoz-community.yaml b/.github/workflows/gor-signoz-community.yaml index 8a3ead31e3..59723abe14 100644 --- a/.github/workflows/gor-signoz-community.yaml +++ b/.github/workflows/gor-signoz-community.yaml @@ -3,8 +3,8 @@ name: gor-signoz-community on: push: tags: - - 'v[0-9]+.[0-9]+.[0-9]+' - - 'v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+' + - "v[0-9]+.[0-9]+.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+" permissions: contents: write @@ -21,6 +21,10 @@ jobs: shell: bash run: | echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV + - name: node-setup + uses: actions/setup-node@v5 + with: + node-version: "22" - name: build-frontend run: make js-build - name: upload-frontend-artifact @@ -89,7 +93,7 @@ jobs: uses: goreleaser/goreleaser-action@v6 with: distribution: goreleaser-pro - version: '~> v2' + version: "~> v2" args: release --config ${{ env.CONFIG_PATH }} --clean --split workdir: . env: @@ -147,7 +151,7 @@ jobs: if: steps.cache-linux.outputs.cache-hit == 'true' && steps.cache-darwin.outputs.cache-hit == 'true' # only run if caches hit with: distribution: goreleaser-pro - version: '~> v2' + version: "~> v2" args: continue --merge workdir: . env: diff --git a/.github/workflows/gor-signoz.yaml b/.github/workflows/gor-signoz.yaml index 29553f98b5..9070df807b 100644 --- a/.github/workflows/gor-signoz.yaml +++ b/.github/workflows/gor-signoz.yaml @@ -37,6 +37,10 @@ jobs: echo 'APPCUES_APP_ID="${{ secrets.APPCUES_APP_ID }}"' >> .env echo 'PYLON_IDENTITY_SECRET="${{ secrets.PYLON_IDENTITY_SECRET }}"' >> .env echo 'DOCS_BASE_URL="https://signoz.io"' >> .env + - name: node-setup + uses: actions/setup-node@v5 + with: + node-version: "22" - name: build-frontend run: make js-build - name: upload-frontend-artifact