Skip to content

Commit 60675bf

Browse files
authored
Remove custom toolchain setup (default is stable) (#80)
1 parent 4f4f8c7 commit 60675bf

File tree

4 files changed

+1
-46
lines changed

4 files changed

+1
-46
lines changed

Diff for: .github/workflows/publish.yml

-21
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@ jobs:
1313
- name: Checkout sources
1414
uses: actions/checkout@v2
1515

16-
- name: Install stable toolchain
17-
uses: actions-rs/toolchain@v1
18-
with:
19-
profile: minimal
20-
toolchain: stable
21-
override: true
22-
2316
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN}
2417
env:
2518
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
@@ -32,13 +25,6 @@ jobs:
3225
- name: Checkout sources
3326
uses: actions/checkout@v2
3427

35-
- name: Install stable toolchain
36-
uses: actions-rs/toolchain@v1
37-
with:
38-
profile: minimal
39-
toolchain: stable
40-
override: true
41-
4228
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN}
4329
env:
4430
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
@@ -51,13 +37,6 @@ jobs:
5137
- name: Checkout sources
5238
uses: actions/checkout@v2
5339

54-
- name: Install stable toolchain
55-
uses: actions-rs/toolchain@v1
56-
with:
57-
profile: minimal
58-
toolchain: stable
59-
override: true
60-
6140
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN}
6241
env:
6342
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Diff for: .github/workflows/pyth-sdk-cw.yml

-8
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,6 @@ jobs:
3333
- name: Checkout sources
3434
uses: actions/checkout@v2
3535

36-
- name: Install stable toolchain
37-
uses: actions-rs/toolchain@v1
38-
with:
39-
profile: minimal
40-
toolchain: 1.58.1
41-
override: true
42-
components: clippy
43-
4436
- name: Generate Schema
4537
run: cargo run --example schema
4638

Diff for: .github/workflows/pyth-sdk-example-cw-contract.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions-rs/toolchain@v1
2626
with:
2727
profile: minimal
28-
toolchain: 1.58.1
28+
toolchain: stable
2929
target: wasm32-unknown-unknown
3030
override: true
3131

@@ -44,14 +44,6 @@ jobs:
4444
- name: Checkout sources
4545
uses: actions/checkout@v2
4646

47-
- name: Install stable toolchain
48-
uses: actions-rs/toolchain@v1
49-
with:
50-
profile: minimal
51-
toolchain: 1.58.1
52-
override: true
53-
components: clippy
54-
5547
- name: Generate Schema
5648
run: cargo run --example schema
5749

Diff for: .github/workflows/pyth-sdk.yml

-8
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,6 @@ jobs:
3535
- name: Checkout sources
3636
uses: actions/checkout@v2
3737

38-
- name: Install stable toolchain
39-
uses: actions-rs/toolchain@v1
40-
with:
41-
profile: minimal
42-
toolchain: 1.58.1
43-
override: true
44-
components: clippy
45-
4638
- name: Generate Schema
4739
run: cargo run --example schema
4840

0 commit comments

Comments
 (0)