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