mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 04:39:24 +00:00
Move from set-output to $GITHUB_OUTPUT
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
This commit is contained in:
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
||||
|
||||
- name: Get nightly version to use
|
||||
id: nightly
|
||||
run: echo "::set-output name=version::$(cat .github/nightly-version)"
|
||||
run: echo "version=$(cat .github/nightly-version)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Build Dependencies
|
||||
uses: ./.github/actions/build-dependencies
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
|
||||
- name: Get nightly version to use
|
||||
id: nightly
|
||||
run: echo "::set-output name=version::$(cat .github/nightly-version)"
|
||||
run: echo "version=$(cat .github/nightly-version)" >> $GITHUB_OUTPUT
|
||||
|
||||
# Doesn't grab the cache as it's not needed
|
||||
- name: Install rustfmt
|
||||
|
||||
Reference in New Issue
Block a user