From ef534134ed1fb51710eab5ee4a9736194c5481b4 Mon Sep 17 00:00:00 2001 From: Kalel Branco Chaves Date: Thu, 19 Feb 2026 16:51:08 -0300 Subject: [PATCH 1/3] chore: fix workflow --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a53d3e9..06cc729 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -123,6 +123,9 @@ jobs: - name: Build the package run: npm run build - name: Run semantic release bot + uses: actions/setup-node@v3 + with: + node-version: 22.22.0 run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 674c404582da2ccd9d129b71fec9a629c889a12c Mon Sep 17 00:00:00 2001 From: Kalel Branco Chaves Date: Thu, 19 Feb 2026 16:59:36 -0300 Subject: [PATCH 2/3] chore: fix workflow --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06cc729..de64798 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -123,9 +123,9 @@ jobs: - name: Build the package run: npm run build - name: Run semantic release bot - uses: actions/setup-node@v3 - with: - node-version: 22.22.0 + uses: actions/setup-node@v3 + with: + node-version: 16.14.0 run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 9b1c9fb8e21fb61424a3a955af4a0b5de7e84996 Mon Sep 17 00:00:00 2001 From: Kalel Branco Chaves Date: Thu, 19 Feb 2026 17:00:32 -0300 Subject: [PATCH 3/3] chore: fix workflow --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index de64798..7123ff2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,10 +122,11 @@ jobs: key: ${{ needs.install-dependencies.outputs.cache-key }} - name: Build the package run: npm run build - - name: Run semantic release bot + - name: Set up Node for semantic-release uses: actions/setup-node@v3 with: - node-version: 16.14.0 + node-version: 22.22.0 + - name: Run semantic release bot run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}