From 07ad6b7b542b74f830d904b6f3824b89188b479f Mon Sep 17 00:00:00 2001 From: timo Date: Mon, 12 Aug 2024 19:54:01 +0200 Subject: [PATCH 1/2] Try a newer "oldest" raku version in CI the current 2021.03 seems to have trouble with Digest::SHA2 where it tries to unbox a 64bit wide bigint to an integer and fails (signed/unsigned related maybe?) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 547dbee..a3f32e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: # - macOS-latest # - windows-latest raku-version: - - "2021.03" + - "2022.01" - "latest" runs-on: ${{ matrix.os }} steps: From 3b662cad67d7268d417f5410116e56fdacc66dcd Mon Sep 17 00:00:00 2001 From: timo Date: Mon, 12 Aug 2024 19:56:08 +0200 Subject: [PATCH 2/2] use 2022.02 which actually exists i somehow managed to hit one of the few release holes by total accident --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3f32e2..c29c6db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: # - macOS-latest # - windows-latest raku-version: - - "2022.01" + - "2022.02" - "latest" runs-on: ${{ matrix.os }} steps: