Skip to content

Commit d8dafd6

Browse files
authored
ci: Remove deprecated set-output syntax (#748)
Co-authored-by: Dylan Anthony <[email protected]>
1 parent 4a90e88 commit d8dafd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Get Python Version
2525
id: get_python_version
26-
run: echo "::set-output name=python_version::$(python --version)"
26+
run: echo "python_version=$(python --version)" >> $GITHUB_OUTPUT
2727

2828
- name: Cache dependencies
2929
uses: actions/cache@v3
@@ -88,7 +88,7 @@ jobs:
8888
python-version: "3.10"
8989
- name: Get Python Version
9090
id: get_python_version
91-
run: echo "::set-output name=python_version::$(python --version)"
91+
run: echo "python_version=$(python --version)" >> $GITHUB_OUTPUT
9292
- name: Cache dependencies
9393
uses: actions/cache@v3
9494
with:

0 commit comments

Comments
 (0)