Update action versions

master
pabloFuente 2026-03-18 15:51:31 +01:00
parent 2d2da5a659
commit b704a9ceea
2 changed files with 8 additions and 8 deletions

View File

@ -27,11 +27,11 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
ref: ${{ inputs.commit_sha || github.sha }} ref: ${{ inputs.commit_sha || github.sha }}
- name: Set up Node.js - name: Set up Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v6
with: with:
node-version: ${{ env.NODE_VERSION }} node-version: ${{ env.NODE_VERSION }}
- name: Commit URL - name: Commit URL
@ -86,11 +86,11 @@ jobs:
script: e2e:lib-virtual-backgrounds script: e2e:lib-virtual-backgrounds
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
ref: ${{ inputs.commit_sha || github.sha }} ref: ${{ inputs.commit_sha || github.sha }}
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v6
with: with:
node-version: ${{ env.NODE_VERSION }} node-version: ${{ env.NODE_VERSION }}
- name: Install wait-on package - name: Install wait-on package

View File

@ -26,14 +26,14 @@ jobs:
curl -sSL https://get.livekit.io/cli | bash curl -sSL https://get.livekit.io/cli | bash
- name: Checkout current repository - name: Checkout current repository
uses: actions/checkout@v4 uses: actions/checkout@v6
with: with:
path: openvidu path: openvidu
- name: Setup Node - name: Setup Node
uses: actions/setup-node@v4 uses: actions/setup-node@v6
with: with:
node-version: 22 node-version: 24
- name: Install dependencies - name: Install dependencies
working-directory: ./openvidu/openvidu-test-integration working-directory: ./openvidu/openvidu-test-integration
@ -44,7 +44,7 @@ jobs:
run: npm run test:ci run: npm run test:ci
- name: Upload report - name: Upload report
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v7
if: always() if: always()
with: with:
name: openvidu-integration-tests-report name: openvidu-integration-tests-report