Skip to content

Commit

Permalink
rename ID of rustc version step in override test
Browse files Browse the repository at this point in the history
  • Loading branch information
wackbyte committed Jan 20, 2024
1 parent 3602a3c commit 239b8e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/override/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ runs:
shell: bash

- name: Stable rustc version
id: rustc
id: rustc-version
run: |
echo "version=$(rustc --version)" >> $GITHUB_OUTPUT
echo "output=$(rustc --version)" >> $GITHUB_OUTPUT
shell: bash

- run: cargo init . --bin --name ci
Expand All @@ -28,5 +28,5 @@ runs:
shell: bash

- name: Check rustc version is overridden
run: cmp -s <(rustc --version) <(echo '${{steps.rustc.outputs.version}}')
run: cmp -s <(rustc --version) <(echo '${{steps.rustc-version.outputs.output}}')
shell: bash

0 comments on commit 239b8e9

Please sign in to comment.