Skip to content

Commit 330b36a

Browse files
committed
Update deps
1 parent 04b9a4e commit 330b36a

File tree

10 files changed

+688
-4133
lines changed

10 files changed

+688
-4133
lines changed

.eslintrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@
8282
"no-console": [0],
8383
"node/no-unsupported-features/es-builtins": [
8484
"error",
85-
{ "version": ">=18.12.1" }
85+
{ "version": ">=18.16.0" }
8686
],
8787
"node/no-unsupported-features/node-builtins": [
8888
"error",
89-
{ "version": ">=18.12.1" }
89+
{ "version": ">=18.16.0" }
9090
],
9191
"func-names": [
9292
"error",

.github/workflows/build.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Node.js
2626
uses: actions/setup-node@v3
2727
with:
28-
node-version: 18.12.1
28+
node-version: 18.16.0
2929
cache: 'npm'
3030

3131
- name: Get Package Version
@@ -47,7 +47,7 @@ jobs:
4747
name: Build
4848
strategy:
4949
matrix:
50-
os: [ubuntu-20.04, windows-2019, macos-11, [self-hosted, linux, ARM64]]
50+
os: [ubuntu-20.04, windows-2022, macos-11, [self-hosted, linux, ARM64]]
5151

5252
runs-on: ${{ matrix.os }}
5353

@@ -61,25 +61,27 @@ jobs:
6161
- name: Install Node.js
6262
uses: actions/setup-node@v3
6363
with:
64-
node-version: 18.12.1
64+
node-version: 18.16.0
6565
cache: 'npm'
6666

6767
- name: Install Modules
6868
run: npm ci --ignore-scripts
6969

7070
- name: Add msbuild to PATH
71-
if: matrix.os == 'windows-2019'
72-
uses: microsoft/setup-msbuild@v1.1
71+
if: matrix.os == 'windows-2022'
72+
uses: microsoft/setup-msbuild@v1.3.1
73+
with:
74+
msbuild-architecture: x64
7375

7476
- name: Build Pre Step
7577
run: chmod +x src/extract.sh && src/extract.sh
7678

7779
- name: Build Unix
78-
if: matrix.os != 'windows-2019'
80+
if: matrix.os != 'windows-2022'
7981
run: node src/build-unix
8082

8183
- name: Build Windows
82-
if: matrix.os == 'windows-2019'
84+
if: matrix.os == 'windows-2022'
8385
shell: cmd
8486
run: src/windows.cmd
8587

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: 18.12.1
24+
node-version: 18.16.0
2525
cache: 'npm'
2626

2727
- name: Get Package Version

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Node.js
2727
uses: actions/setup-node@v3
2828
with:
29-
node-version: 18.12.1
29+
node-version: 18.16.0
3030
cache: 'npm'
3131

3232
- name: Install Modules
@@ -53,7 +53,7 @@ jobs:
5353
- name: Install Node.js
5454
uses: actions/setup-node@v3
5555
with:
56-
node-version: 18.12.1
56+
node-version: 18.16.0
5757
cache: 'npm'
5858

5959
- name: Install Modules

FREEIMAGE_FIPL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ EXHIBIT A.
139139

140140
"The contents of this file are subject to the FreeImage Public License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://home.wxs.nl/~flvdberg/freeimage-license.txt
141141

142-
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
142+
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Luis Blanco
3+
Copyright (c) 2023 Luis Blanco
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ const { install } = require('addon-tools-raub');
44

55

66
const prefix = 'https://github.com/node-3d/deps-freeimage-raub/releases/download';
7-
const tag = '4.0.0';
7+
const tag = '4.1.0';
88

99
install(`${prefix}/${tag}`);

0 commit comments

Comments
 (0)