From 966958ef6157b80ea781f51b14a934eaf9b89df7 Mon Sep 17 00:00:00 2001 From: Lilith River Date: Mon, 3 Apr 2023 16:45:58 -0600 Subject: [PATCH] rustup update on macos --- .github/workflows/release_ci.yml | 5 +++++ .github/workflows/test_ci.yml | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/release_ci.yml b/.github/workflows/release_ci.yml index 42d2a31f..a0088976 100644 --- a/.github/workflows/release_ci.yml +++ b/.github/workflows/release_ci.yml @@ -47,6 +47,11 @@ jobs: runs-on: ${{matrix.os}} steps: - run: rustup show + + - run: rustup update stable + if: ${{contains( matrix.os, 'macos' )}} + + - name: Checkout code uses: actions/checkout@v3 - uses: FranzDiebold/github-env-vars-action@v1.3.0 diff --git a/.github/workflows/test_ci.yml b/.github/workflows/test_ci.yml index 9962ca45..f39e36ff 100644 --- a/.github/workflows/test_ci.yml +++ b/.github/workflows/test_ci.yml @@ -50,6 +50,10 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - run: rustup update stable + if: ${{contains( matrix.os, 'macos' )}} + + ### Cargo Cache for Build Artifacts ### - name: Cache cargo uses: actions/cache@v3