Skip to content

Commit

Permalink
chore: update dependencies and node
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed Jan 9, 2025
1 parent c47abbe commit f499777
Show file tree
Hide file tree
Showing 13 changed files with 4,112 additions and 2,322 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ runs:
using: composite
steps:
- name: Setup Node
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22

- name: Setup Cache
uses: actions/cache@v4.0.2
uses: actions/cache@v4
id: cache
with:
path: '**/node_modules'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.1.4
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -32,7 +32,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.1.4
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -50,7 +50,7 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.1.4
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
Expand All @@ -59,7 +59,7 @@ jobs:
run: npm run coverage

- name: Post to Codecov
uses: codecov/codecov-action@v4.3.1
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Expand All @@ -70,15 +70,15 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.1.4
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup

- name: Run Slither
uses: crytic/slither-action@v0.4.0
with:
node-version: 20
node-version: 22

codespell:
name: Codespell
Expand All @@ -87,10 +87,10 @@ jobs:
FORCE_COLOR: 1
steps:
- name: Setup Code
uses: actions/checkout@v4.1.4
uses: actions/checkout@v4

- name: Run CodeSpell
uses: codespell-project/actions-codespell@v2.0
uses: codespell-project/actions-codespell@v2
with:
check_hidden: true
check_filenames: true
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
2 changes: 1 addition & 1 deletion analysis/description-table/ERC20Recover.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| File Name | SHA-1 Hash |
|-------------|--------------|
| dist/ERC20Recover.dist.sol | 0a4cf00b0e318c15178e5dbbe4842f236d61409f |
| dist/ERC20Recover.dist.sol | 038e86962724d854953ae52f00b9e119e3a7d29a |


### Contracts Description Table
Expand Down
2 changes: 1 addition & 1 deletion analysis/description-table/ERC721Recover.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| File Name | SHA-1 Hash |
|-------------|--------------|
| dist/ERC721Recover.dist.sol | 0d1358f3bebad15a918b2d1dcd8f990c2f8c1151 |
| dist/ERC721Recover.dist.sol | 38abc44b58da05cf914b055a347534b9a8b6e189 |


### Contracts Description Table
Expand Down
2 changes: 1 addition & 1 deletion analysis/description-table/TokenRecover.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| File Name | SHA-1 Hash |
|-------------|--------------|
| dist/TokenRecover.dist.sol | f1895b2e64de7570f41162023049f10ca3226f0f |
| dist/TokenRecover.dist.sol | a0fea94c1969e0bd5c46cd9e85246b68a3cb05d7 |


### Contracts Description Table
Expand Down
2 changes: 1 addition & 1 deletion analysis/description-table/TokenRecoverLegacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| File Name | SHA-1 Hash |
|-------------|--------------|
| dist/TokenRecoverLegacy.dist.sol | f5ff152d12a953b6d3f252502cf2886209d53e78 |
| dist/TokenRecoverLegacy.dist.sol | 5f5078a67a8e2706b724455d0136474ea25e08c2 |


### Contracts Description Table
Expand Down
8 changes: 4 additions & 4 deletions dist/ERC20Recover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.22.13 https://hardhat.org
// Sources flattened with hardhat v2.22.17 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0

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


// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0

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


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.1.0
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.2.0

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
Expand Down
10 changes: 5 additions & 5 deletions dist/ERC721Recover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.22.13 https://hardhat.org
// Sources flattened with hardhat v2.22.17 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0

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


// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0

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


// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.1.0
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.2.0

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


// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.1.0
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.2.0

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)
Expand Down
12 changes: 6 additions & 6 deletions dist/TokenRecover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.22.13 https://hardhat.org
// Sources flattened with hardhat v2.22.17 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0

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


// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0

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


// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.1.0
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.2.0

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


// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.1.0
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.2.0

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


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.1.0
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.2.0

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
Expand Down
8 changes: 4 additions & 4 deletions dist/TokenRecoverLegacy.dist.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.22.13 https://hardhat.org
// Sources flattened with hardhat v2.22.17 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.1.0
// File @openzeppelin/contracts/utils/Context.sol@v5.2.0

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


// File @openzeppelin/contracts/access/Ownable.sol@v5.1.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.2.0

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


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.1.0
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.2.0

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)
Expand Down
Loading

0 comments on commit f499777

Please sign in to comment.