From d9ead0f26abca3cf4c15e9bcd56a2ddb81cea91c Mon Sep 17 00:00:00 2001 From: Le-Caignec Date: Wed, 15 Jan 2025 14:16:13 +0100 Subject: [PATCH 1/2] Update copyright year in SPDX headers to 2024-2025 --- hardhat.config.ts | 2 +- test/VoucherHub.test.ts | 2 +- test/beacon/Voucher.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 28baadc..fd5d2ca 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 IEXEC BLOCKCHAIN TECH +// SPDX-FileCopyrightText: 2024-2025 IEXEC BLOCKCHAIN TECH // SPDX-License-Identifier: Apache-2.0 import '@nomicfoundation/hardhat-toolbox'; diff --git a/test/VoucherHub.test.ts b/test/VoucherHub.test.ts index c91b44f..b8d52fa 100644 --- a/test/VoucherHub.test.ts +++ b/test/VoucherHub.test.ts @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 IEXEC BLOCKCHAIN TECH +// SPDX-FileCopyrightText: 2024-2025 IEXEC BLOCKCHAIN TECH // SPDX-License-Identifier: Apache-2.0 import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers'; diff --git a/test/beacon/Voucher.test.ts b/test/beacon/Voucher.test.ts index e51d285..3fa53a2 100644 --- a/test/beacon/Voucher.test.ts +++ b/test/beacon/Voucher.test.ts @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2024 IEXEC BLOCKCHAIN TECH +// SPDX-FileCopyrightText: 2024-2025 IEXEC BLOCKCHAIN TECH // SPDX-License-Identifier: Apache-2.0 import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers'; From 92811024c11af689f8b796b72f111132eca5b7a3 Mon Sep 17 00:00:00 2001 From: Robin Le Caignec <72495599+Le-Caignec@users.noreply.github.com> Date: Wed, 15 Jan 2025 17:59:28 +0100 Subject: [PATCH 2/2] bugfix/slither-regression (#60) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update Node.js version in GitHub Actions workflow * try to remove neutral check * Update GitHub Actions workflow to improve static analysis output handling * Update Node.js version to 20 in GitHub Actions workflow * Rename default job to coverage in GitHub Actions workflow * Rename coverage job to default in GitHub Actions workflow * Continue workflow harmonization * test removing coverage * remove slither * rename to default * Enhance CI workflow by adding coverage reports and reintroducing Slither static analysis * rename ci --------- Co-authored-by: Jérémy James Toussaint <33313130+jeremyjams@users.noreply.github.com> --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b657cf9..43101de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ concurrency: cancel-in-progress: true jobs: - default: + coverage: runs-on: ubuntu-latest steps: - name: Checkout