Skip to content

Commit c70515b

Browse files
committed
update to stable
1 parent 3a7a08f commit c70515b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/build.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13+
- name: update rust stable
14+
run: rustup update stable
1315
- name: Build
1416
run: cargo build --verbose
1517
- name: Run tests
16-
run: cargo test --verbose
18+
run: cargo test --verbose

.github/workflows/release.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16+
- name: update rust stable
17+
run: rustup update stable
1618
- name: Build
1719
run: cargo build --verbose
1820
- name: Run tests
@@ -21,6 +23,8 @@ jobs:
2123
runs-on: ubuntu-latest
2224
needs: [build]
2325
steps:
26+
- name: update rust stable
27+
run: rustup update stable
2428
- uses: actions/checkout@v4
2529
- name: Publish Dry Run
2630
run: cargo publish --dry-run
@@ -31,6 +35,8 @@ jobs:
3135
env:
3236
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
3337
steps:
38+
- name: update rust stable
39+
run: rustup update stable
3440
- uses: actions/checkout@v4
3541
- name: Publish
3642
run: cargo publish

0 commit comments

Comments
 (0)