From 8a634e1aa0db945cd5ba155b42a83ae64954a122 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Tue, 18 Feb 2025 15:39:18 -0500 Subject: [PATCH 1/3] ci: Update actions/cache to v4 Github has deprecated v2 so this needs to be bumped. --- .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 fee5c45ea..a801f2722 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -117,7 +117,7 @@ jobs: with: key: ${{ matrix.target }} - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 if: matrix.os == 'ubuntu-latest' with: path: /tmp/.buildx-cache From e468f69ee056be7e9d4dbfdc02083a34d4c157b9 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Tue, 18 Feb 2025 15:48:46 -0500 Subject: [PATCH 2/3] ci: Pin the nightly toolchain for i686-pc-windows-gnu Pin i686-pc-windows-gnu to nightly-2025-02-07 until [1] is resolved. [1]: https://github.com/rust-lang/rust/issues/136795 --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a801f2722..1575730fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -98,7 +98,8 @@ jobs: test_verbatim: 1 - target: i686-pc-windows-gnu os: windows-latest - rust: nightly-i686-gnu + # FIXME: pinned due to https://github.com/rust-lang/rust/issues/136795 + rust: nightly-2025-02-07-i686-gnu - target: x86_64-pc-windows-gnu os: windows-latest rust: nightly-x86_64-gnu From e37b463c6c6bff0ed29d907265531c1c073ffc76 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Wed, 19 Feb 2025 15:26:07 -0500 Subject: [PATCH 3/3] ci: Pin the nightly toolchain for aarch64-unknown-linux-gnu Pin aarch64-unknown-linux-gnu to nightly-2025-02-07 until [1] is resolved. [1]: https://github.com/llvm/llvm-project/issues/127804 --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1575730fe..c179a3391 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,8 @@ jobs: rust: nightly - target: aarch64-unknown-linux-gnu os: ubuntu-latest - rust: nightly + # FIXME: pinned due to https://github.com/llvm/llvm-project/issues/127804 + rust: nightly-2025-02-07 - target: aarch64-pc-windows-msvc os: windows-latest rust: nightly