Skip to content

Commit a9584cc

Browse files
authored
Merge pull request #634 from light-curve/copilot/fix-ci-set-output-deprecation
CI: replace deprecated `set-output` with `$GITHUB_OUTPUT`
2 parents 68337dd + f309299 commit a9584cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
python-version: '3.14t'
208208
allow-prereleases: true
209209
- name: Get minimum supported Rust version
210-
run: echo "::set-output name=msrv::$(grep '^rust-version = ' Cargo.toml | grep -o '[0-9.]\+')"
210+
run: echo "msrv=$(grep '^rust-version = ' Cargo.toml | grep -o '[0-9.]\+')" >> $GITHUB_OUTPUT
211211
id: get_msrv
212212
- uses: dtolnay/rust-toolchain@master
213213
with:

0 commit comments

Comments
 (0)