From 35a2d26bd5163726190432c43868c1f141e9c50b Mon Sep 17 00:00:00 2001 From: Alex Huszagh Date: Thu, 6 Feb 2025 11:31:01 -0600 Subject: [PATCH] Migrate to `upload-artifact@v4`. --- .github/workflows/Cifuzz.yml | 2 +- CHANGELOG | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Cifuzz.yml b/.github/workflows/Cifuzz.yml index b96f74d4..653fdba0 100644 --- a/.github/workflows/Cifuzz.yml +++ b/.github/workflows/Cifuzz.yml @@ -19,7 +19,7 @@ jobs: dry-run: false language: rust - name: Upload Crash - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() && steps.build.outcome == 'success' with: name: artifacts diff --git a/CHANGELOG b/CHANGELOG index f6d6e0c0..10eb2883 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- CI with OSS-Fuzz for the deprecated `actions/upload-artifact@v3` (#221). - Bug where the `radix` feature wasn't enabling `power-of-two` in `lexical-core` or `lexical` (#204). - Fixed performance issues due to a lack of inlining on the Eisel-Lemire algorithm (#210). - Issue with parsing non-decimal exponent radixes when using a decimal mantissa radix for floating-point numbers (#212).