Skip to content

Commit f1c4bbe

Browse files
committed
fix: replace deprecated actions-rs/toolchain with dtolnay/rust-toolchain
- Replace actions-rs/toolchain@v1 with dtolnay/rust-toolchain@stable - Remove deprecated set-output and save-state commands - Update both health-checks and build-and-render jobs - Resolves GitHub Actions deprecation warnings Fixes #1
1 parent 0a50443 commit f1c4bbe

1 file changed

Lines changed: 2 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- name: Install Rust
23-
uses: actions-rs/toolchain@v1
24-
with:
25-
profile: minimal
26-
toolchain: stable
27-
override: true
23+
uses: dtolnay/rust-toolchain@stable
2824

2925
- name: Cache cargo registry
3026
uses: actions/cache@v3
@@ -70,11 +66,7 @@ jobs:
7066
uses: actions/checkout@v4
7167

7268
- name: Install Rust
73-
uses: actions-rs/toolchain@v1
74-
with:
75-
profile: minimal
76-
toolchain: stable
77-
override: true
69+
uses: dtolnay/rust-toolchain@stable
7870

7971
- name: Cache cargo build
8072
uses: actions/cache@v3

0 commit comments

Comments
 (0)