diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a630f489..d90f2e58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # LTS steps: - name: Checkout uses: actions/checkout@v3 @@ -15,7 +15,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: '22.13.0' # LTS + node-version: '22.x' # LTS - name: Install dependencies run: npm install @@ -24,7 +24,7 @@ jobs: run: npm test build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # LTS needs: test # This ensures the build job only runs if the test job succeeds steps: - name: Checkout diff --git a/Dockerfile b/Dockerfile index 86015d09..08916366 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use a lightweight Node.js image https://hub.docker.com/_/node -FROM node:lts-alpine +FROM node:22-alpine # Set working directory WORKDIR /src diff --git a/app/src/server.js b/app/src/server.js index be9b375f..428b88b6 100755 --- a/app/src/server.js +++ b/app/src/server.js @@ -39,7 +39,7 @@ dependencies: { * @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.4.60 + * @version 1.4.61 * */ diff --git a/package.json b/package.json index 39d815f6..27db83c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalk", - "version": "1.4.60", + "version": "1.4.61", "description": "A free WebRTC browser-based video call", "main": "server.js", "scripts": { diff --git a/public/js/client.js b/public/js/client.js index 7a7b5291..4fe39d3a 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -15,7 +15,7 @@ * @license For commercial use or closed source, contact us at license.mirotalk@gmail.com or purchase directly from CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-p2p-webrtc-realtime-video-conferences/38376661 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.4.60 + * @version 1.4.61 * */ @@ -11039,7 +11039,7 @@ function showAbout() { Swal.fire({ background: swBg, position: 'center', - title: 'WebRTC P2P v1.4.60', + title: 'WebRTC P2P v1.4.61', imageAlt: 'mirotalk-about', imageUrl: images.about, customClass: { image: 'img-about' },