Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/setup-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set Node.js 20.x
- name: Set Node.js 24.x
uses: actions/setup-node@master
with:
node-version: 20.x
node-version: 24.x
cache: 'npm'
cache-dependency-path: 'setup-env/package-lock.json'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setup-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set Node.js 20.x
- name: Set Node.js 24.x
uses: actions/setup-node@master
with:
node-version: 20.x
node-version: 24.x
cache: 'npm'
cache-dependency-path: 'setup-local/package-lock.json'

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
description: 'Project name for the tests'
required: false
runs:
using: 'node20'
using: 'node24'
main: 'setup-env/dist/index.js'
branding:
icon: 'check-circle'
Expand Down
2 changes: 1 addition & 1 deletion browserstack-report-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ inputs:
default: '300'

runs:
using: 'node16'
using: 'node24'
main: 'dist/index.js'

branding:
Expand Down
2 changes: 1 addition & 1 deletion setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ inputs:
required: false
default: 'browserstack-integrations[bot]'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion setup-local/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ inputs:
description: 'Extra arguments to be passed to the Local Binary'
required: false
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
Loading