diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 11dad58..e45712d 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -25,7 +25,7 @@ runs: name: Setup node uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 18 cache: npm - name: Install npm dependencies diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 5afee1d..dd4b8a9 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 12, 14, 16 ] + node: [ 18 ] steps: - @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 12, 14, 16 ] + node: [ 18 ] steps: - @@ -81,7 +81,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 12, 14, 16 ] + node: [ 18 ] steps: - @@ -111,7 +111,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ 16 ] + node: [ 18 ] steps: - diff --git a/.github/workflows/fix.yml b/.github/workflows/fix.yml index 592e625..40f62b4 100644 --- a/.github/workflows/fix.yml +++ b/.github/workflows/fix.yml @@ -20,7 +20,7 @@ jobs: name: Setup node uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 18 cache: npm - name: Install npm dependencies diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a93953d..ce9af28 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -67,7 +67,7 @@ jobs: submodules: recursive - name: Dispatch void-linux build - uses: aurelien-baudet/workflow-dispatch@v2 + uses: the-actions-org/workflow-dispatch@v4 with: workflow: build.yml repo: JezerM/nody-greeter-void diff --git a/README.md b/README.md index fe6d2ac..13c7119 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Themes working in **web-greeter** should work also here. All themes shipped with ### Build dependencies -- Node.js (v12, v14 and v16 are supported) +- Node.js (v18 supported) - Python 3 - base-devel (build-essentials) @@ -129,7 +129,7 @@ Check `nody-greeter --help` for more commands. ### node-gyp fails on `npm run rebuild` -> Supported Node.js versions: 12, 14, 15, 16 (other versions should work but are untested) +> Supported Node.js versions: 16, 18 (other versions should work but are untested) Make sure you are using a [node-gtk][node-gtk] supported Node.js version. diff --git a/build/DEBIAN/control b/build/DEBIAN/control index 1b83bc7..7991436 100644 --- a/build/DEBIAN/control +++ b/build/DEBIAN/control @@ -1,11 +1,11 @@ Package: nody-greeter -Version: 1.5.2 +Version: 1.6.0 Provides: lightdm-greeter Replaces: lightdm-webkit-greeter Section: x11 Priority: optional Homepage: https://github.com/JezerM/nody-greeter -Installed-Size: 304160 +Installed-Size: 304404 Architecture: amd64 Maintainer: JezerM Depends: gobject-introspection, liblightdm-gobject-1-0, libcairo2, liblightdm-gobject-1-dev, libc6 diff --git a/package-lock.json b/package-lock.json index 8f39d3a..afc2af2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nody-greeter", - "version": "1.5.2", + "version": "1.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nody-greeter", - "version": "1.5.2", + "version": "1.6.0", "license": "ISC", "dependencies": { "fp-ts": "^2.11.7", diff --git a/package.json b/package.json index b846e2e..15ed4cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nody-greeter", - "version": "1.5.2", + "version": "1.6.0", "apiVersion": "1.0.0", "description": "Node.js (electron) greeter for LightDM", "main": "out/main/index.cjs",