diff --git a/.github/workflows/playwright-update.yml b/.github/workflows/playwright-update.yml index 02d327d5..a7d09cd1 100755 --- a/.github/workflows/playwright-update.yml +++ b/.github/workflows/playwright-update.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: allow write in work dir run: sudo chmod -R 777 . - name: Install Dependencies diff --git a/.github/workflows/pr-test-build.yml b/.github/workflows/pr-test-build.yml index 3db8ea63..1eed37a3 100644 --- a/.github/workflows/pr-test-build.yml +++ b/.github/workflows/pr-test-build.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: allow write in work dir run: sudo chmod -R 777 . - name: Install Dependencies diff --git a/.github/workflows/pr-test-linter.yml b/.github/workflows/pr-test-linter.yml index 6f4822a1..949bc2f2 100644 --- a/.github/workflows/pr-test-linter.yml +++ b/.github/workflows/pr-test-linter.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: allow write in work dir run: sudo chmod -R 777 . - name: Install Dependencies diff --git a/.github/workflows/pr-test-playwright.yml b/.github/workflows/pr-test-playwright.yml index 03a4c2da..adca59f9 100755 --- a/.github/workflows/pr-test-playwright.yml +++ b/.github/workflows/pr-test-playwright.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: "20" + node-version: "22" - name: allow write in work dir run: sudo chmod -R 777 . - name: Install Dependencies diff --git a/.github/workflows/release-publish-package.yml b/.github/workflows/release-publish-package.yml index 7ae4b5dc..ab24fb8d 100644 --- a/.github/workflows/release-publish-package.yml +++ b/.github/workflows/release-publish-package.yml @@ -14,7 +14,7 @@ jobs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '22' registry-url: https://registry.npmjs.org always-auth: true scope: '@xpadev-net' diff --git a/.github/workflows/release-typedoc.yml b/.github/workflows/release-typedoc.yml index e2b46c08..345692ae 100755 --- a/.github/workflows/release-typedoc.yml +++ b/.github/workflows/release-typedoc.yml @@ -26,7 +26,7 @@ jobs: - name: setup Node uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 22 registry-url: "https://registry.npmjs.org" # Runs a single command using the runners shell - name: init diff --git a/rollup.config.dts.mjs b/rollup.config.dts.mjs index cede6902..dc6a0c12 100644 --- a/rollup.config.dts.mjs +++ b/rollup.config.dts.mjs @@ -1,4 +1,4 @@ -import pkg from "./package.json" assert { type: "json" }; +import pkg from "./package.json" with { type: "json" }; import { fileURLToPath } from "url"; import * as path from "path"; import dts from "rollup-plugin-dts"; diff --git a/rollup.config.mjs b/rollup.config.mjs index 5b451384..ce2b5a0a 100755 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -1,7 +1,7 @@ import babel from "@rollup/plugin-babel"; import typescript from "@rollup/plugin-typescript"; import { nodeResolve } from "@rollup/plugin-node-resolve"; -import pkg from "./package.json" assert { type: "json" }; +import pkg from "./package.json" with { type: "json" }; import { fileURLToPath } from "url"; import * as path from "path"; const banner = `/*!