Skip to content

Commit

Permalink
chore(ci): make sure of installing latest stable on publish workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
IceTDrinker committed Sep 11, 2024
1 parent f474dbb commit b4fc87a
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
outputs:
hash: ${{ steps.hash.outputs.hash }}
steps:
- name: Install latest stable
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
Expand Down Expand Up @@ -73,6 +77,10 @@ jobs:
contents: read
id-token: write
steps:
- name: Install latest stable
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/make_release_concrete_csprng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
name: Publish concrete-csprng Release
runs-on: ubuntu-latest
steps:
- name: Install latest stable
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/make_release_concrete_tfhe_versionable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
name: Publish tfhe-versionable Release
runs-on: ubuntu-latest
steps:
- name: Install latest stable
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/make_release_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
env:
CUDA_PATH: /usr/local/cuda-${{ matrix.cuda }}
steps:
- name: Install latest stable
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/make_release_zk_pok.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:
name: Publish tfhe-zk-pok Release
runs-on: ubuntu-latest
steps:
- name: Install latest stable
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a
with:
toolchain: stable

- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
Expand Down

0 comments on commit b4fc87a

Please sign in to comment.