Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ on:
type: boolean

env:
NODE_VERSION: "20"
NODE_VERSION: "24"

jobs:
validate-input:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Verify SHA is provided
if: inputs.sha == ''
Expand All @@ -67,7 +67,7 @@ jobs:
exit 1

output-publish-params:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: validate-input
outputs:
publish_npm: ${{ steps.output-publish-params.outputs.publish_npm }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
if: |
always()
&& (needs.tests.result == 'success' || needs.tests.result == 'skipped')
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
if: inputs.sha != ''
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
path: docs/

publish-npm:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [tests, output-publish-params]
if: |
always()
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
&& (needs.validate-npm.result == 'success' || needs.validate-npm.result == 'skipped')
&& needs.output-publish-params.result == 'success'
&& needs.output-publish-params.outputs.publish_api_docs == 'true'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Download API docs artifact
uses: actions/download-artifact@v4
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ on:

jobs:
validate-input:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: If release, verify SHA is provided
if: inputs.is_release && inputs.sha == ''
Expand All @@ -61,7 +61,7 @@ jobs:
echo '"${{ inputs.sha }}"' | jq -e '. | length == 40'

lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ env.DEFAULT_NODE }}
Expand All @@ -83,7 +83,7 @@ jobs:
npm run check-types

package:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [validate-input, lint]
steps:
- name: Checkout (with SHA)
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
path: ${{ env.filename }}

test-setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: package
steps:
- name: Checkout (with SHA)
Expand Down Expand Up @@ -172,8 +172,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-22.04']
node-version: ["20", "22", "24"]
os: ['ubuntu-24.04']
node-version: ["22", "24", "26"]
arch: ['x86_64', 'arm64']
image-type: ['bullseye-slim', 'alpine']
steps:
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
fail-fast: false
matrix:
os: ["macos-15", "macos-15-intel"]
node-version: ["20", "22", "24"]
node-version: ["22", "24", "26"]
steps:
- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -224,7 +224,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: ncbac-test-setup
- name: Download package tarball
- name: Download package tarball
uses: actions/download-artifact@v4
with:
name: cba-package
Expand All @@ -244,7 +244,7 @@ jobs:
fail-fast: false
matrix:
os: ["windows-latest"]
node-version: ["20", "22", "24"]
node-version: ["22", "24", "26"]
arch: ["x86_64"]
steps:
- name: Setup Node.js
Expand Down Expand Up @@ -275,8 +275,8 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ["20", "22", "24"]
runs-on: ubuntu-22.04
node-version: ["22", "24", "26"]
runs-on: ubuntu-24.04
steps:
- name: Install cbdinocluster
run: |
Expand All @@ -301,7 +301,7 @@ jobs:
- count: 3
version: 2.2.0
docker:
image: ghcr.io/cb-vanilla/enterprise-analytics:2.2.0-1200
image: ghcr.io/cb-vanilla/enterprise-analytics:2.2.0-1314
docker:
load-balancer: true
use-dino-certs: true
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/verify_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ on:
type: string

env:
DEFAULT_NODE: "20"
DEFAULT_NODE: "24"

jobs:
validate-input:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Verify SDK version
if: inputs.version == ''
Expand All @@ -40,7 +40,7 @@ jobs:
exit 1

test-setup:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: validate-input
steps:
- name: Setup Node.js
Expand All @@ -65,13 +65,13 @@ jobs:
NCBAC-test/

verify-cbdinocluster:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: test-setup
strategy:
fail-fast: false
matrix:
os: ['ubuntu-22.04']
node-version: ["20", "22", "24"]
os: ['ubuntu-24.04']
node-version: ["22", "24", "26"]
steps:
- name: Install cbdinocluster
run: |
Expand All @@ -96,7 +96,7 @@ jobs:
- count: 3
version: 2.2.0
docker:
image: ghcr.io/cb-vanilla/enterprise-analytics:2.2.0-1200
image: ghcr.io/cb-vanilla/enterprise-analytics:2.2.0-1314
docker:
load-balancer: true
use-dino-certs: true
Expand Down
Loading