Skip to content

Commit f499777

Browse files
committed
chore: update dependencies and node
1 parent c47abbe commit f499777

File tree

13 files changed

+4112
-2322
lines changed

13 files changed

+4112
-2322
lines changed

.github/actions/setup/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ runs:
44
using: composite
55
steps:
66
- name: Setup Node
7-
uses: actions/setup-node@v4.0.2
7+
uses: actions/setup-node@v4
88
with:
9-
node-version: 20
9+
node-version: 22
1010

1111
- name: Setup Cache
12-
uses: actions/cache@v4.0.2
12+
uses: actions/cache@v4
1313
id: cache
1414
with:
1515
path: '**/node_modules'

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
FORCE_COLOR: 1
1818
steps:
1919
- name: Setup Code
20-
uses: actions/checkout@v4.1.4
20+
uses: actions/checkout@v4
2121

2222
- name: Setup Environment
2323
uses: ./.github/actions/setup
@@ -32,7 +32,7 @@ jobs:
3232
FORCE_COLOR: 1
3333
steps:
3434
- name: Setup Code
35-
uses: actions/checkout@v4.1.4
35+
uses: actions/checkout@v4
3636

3737
- name: Setup Environment
3838
uses: ./.github/actions/setup
@@ -50,7 +50,7 @@ jobs:
5050
FORCE_COLOR: 1
5151
steps:
5252
- name: Setup Code
53-
uses: actions/checkout@v4.1.4
53+
uses: actions/checkout@v4
5454

5555
- name: Setup Environment
5656
uses: ./.github/actions/setup
@@ -59,7 +59,7 @@ jobs:
5959
run: npm run coverage
6060

6161
- name: Post to Codecov
62-
uses: codecov/codecov-action@v4.3.1
62+
uses: codecov/codecov-action@v5
6363
env:
6464
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6565

@@ -70,15 +70,15 @@ jobs:
7070
FORCE_COLOR: 1
7171
steps:
7272
- name: Setup Code
73-
uses: actions/checkout@v4.1.4
73+
uses: actions/checkout@v4
7474

7575
- name: Setup Environment
7676
uses: ./.github/actions/setup
7777

7878
- name: Run Slither
7979
uses: crytic/[email protected]
8080
with:
81-
node-version: 20
81+
node-version: 22
8282

8383
codespell:
8484
name: Codespell
@@ -87,10 +87,10 @@ jobs:
8787
FORCE_COLOR: 1
8888
steps:
8989
- name: Setup Code
90-
uses: actions/checkout@v4.1.4
90+
uses: actions/checkout@v4
9191

9292
- name: Run CodeSpell
93-
uses: codespell-project/actions-codespell@v2.0
93+
uses: codespell-project/actions-codespell@v2
9494
with:
9595
check_hidden: true
9696
check_filenames: true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22

analysis/description-table/ERC20Recover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| File Name | SHA-1 Hash |
77
|-------------|--------------|
8-
| dist/ERC20Recover.dist.sol | 0a4cf00b0e318c15178e5dbbe4842f236d61409f |
8+
| dist/ERC20Recover.dist.sol | 038e86962724d854953ae52f00b9e119e3a7d29a |
99

1010

1111
### Contracts Description Table

analysis/description-table/ERC721Recover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| File Name | SHA-1 Hash |
77
|-------------|--------------|
8-
| dist/ERC721Recover.dist.sol | 0d1358f3bebad15a918b2d1dcd8f990c2f8c1151 |
8+
| dist/ERC721Recover.dist.sol | 38abc44b58da05cf914b055a347534b9a8b6e189 |
99

1010

1111
### Contracts Description Table

analysis/description-table/TokenRecover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| File Name | SHA-1 Hash |
77
|-------------|--------------|
8-
| dist/TokenRecover.dist.sol | f1895b2e64de7570f41162023049f10ca3226f0f |
8+
| dist/TokenRecover.dist.sol | a0fea94c1969e0bd5c46cd9e85246b68a3cb05d7 |
99

1010

1111
### Contracts Description Table

analysis/description-table/TokenRecoverLegacy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
| File Name | SHA-1 Hash |
77
|-------------|--------------|
8-
| dist/TokenRecoverLegacy.dist.sol | f5ff152d12a953b6d3f252502cf2886209d53e78 |
8+
| dist/TokenRecoverLegacy.dist.sol | 5f5078a67a8e2706b724455d0136474ea25e08c2 |
99

1010

1111
### Contracts Description Table

dist/ERC20Recover.dist.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// SPDX-License-Identifier: MIT
22

3-
// Sources flattened with hardhat v2.22.13 https://hardhat.org
3+
// Sources flattened with hardhat v2.22.17 https://hardhat.org
44

55

66

7-
// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
7+
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0
88

99
// Original license: SPDX_License_Identifier: MIT
1010
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
@@ -36,7 +36,7 @@ abstract contract Context {
3636
}
3737

3838

39-
// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
39+
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0
4040

4141
// Original license: SPDX_License_Identifier: MIT
4242
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
@@ -138,7 +138,7 @@ abstract contract Ownable is Context {
138138
}
139139

140140

141-
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.1.0
141+
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.2.0
142142

143143
// Original license: SPDX_License_Identifier: MIT
144144
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

dist/ERC721Recover.dist.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// SPDX-License-Identifier: MIT
22

3-
// Sources flattened with hardhat v2.22.13 https://hardhat.org
3+
// Sources flattened with hardhat v2.22.17 https://hardhat.org
44

55

66

7-
// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
7+
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0
88

99
// Original license: SPDX_License_Identifier: MIT
1010
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
@@ -36,7 +36,7 @@ abstract contract Context {
3636
}
3737

3838

39-
// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
39+
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0
4040

4141
// Original license: SPDX_License_Identifier: MIT
4242
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
@@ -138,7 +138,7 @@ abstract contract Ownable is Context {
138138
}
139139

140140

141-
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.1.0
141+
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.2.0
142142

143143
// Original license: SPDX_License_Identifier: MIT
144144
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
@@ -167,7 +167,7 @@ interface IERC165 {
167167
}
168168

169169

170-
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.1.0
170+
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.2.0
171171

172172
// Original license: SPDX_License_Identifier: MIT
173173
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)

dist/TokenRecover.dist.sol

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// SPDX-License-Identifier: MIT
22

3-
// Sources flattened with hardhat v2.22.13 https://hardhat.org
3+
// Sources flattened with hardhat v2.22.17 https://hardhat.org
44

55

66

7-
// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
7+
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0
88

99
// Original license: SPDX_License_Identifier: MIT
1010
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
@@ -36,7 +36,7 @@ abstract contract Context {
3636
}
3737

3838

39-
// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
39+
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0
4040

4141
// Original license: SPDX_License_Identifier: MIT
4242
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
@@ -138,7 +138,7 @@ abstract contract Ownable is Context {
138138
}
139139

140140

141-
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.1.0
141+
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.2.0
142142

143143
// Original license: SPDX_License_Identifier: MIT
144144
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)
@@ -167,7 +167,7 @@ interface IERC165 {
167167
}
168168

169169

170-
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.1.0
170+
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.2.0
171171

172172
// Original license: SPDX_License_Identifier: MIT
173173
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)
@@ -304,7 +304,7 @@ interface IERC721 is IERC165 {
304304
}
305305

306306

307-
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.1.0
307+
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.2.0
308308

309309
// Original license: SPDX_License_Identifier: MIT
310310
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

0 commit comments

Comments
 (0)