Skip to content

Commit

Permalink
fix: updates inconsistent output setting
Browse files Browse the repository at this point in the history
Signed-off-by: Jennifer Power <[email protected]>
  • Loading branch information
jpower432 committed Jul 16, 2024
1 parent d952328 commit a6a097a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
- id: versions
run: |
min_version=$(jq '.PYTHON_MIN' version.json)
max=$(jq '.PYTHON_MAX' version.json)
echo "::set-output name=min::$min_version"
echo "::set-output name=max::$max_version"
max_version=$(jq '.PYTHON_MAX' version.json)
echo "min=$min_version" >> $GITHUB_OUTPUT
echo "max=$max_version" >> $GITHUB_OUTPUT
build:
needs: set-versions
runs-on: ${{ matrix.os }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- id: versions
run: |
min_version=$(jq '.PYTHON_MIN' version.json)
max=$(jq '.PYTHON_MAX' version.json)
echo "::set-output name=min::$min_version"
echo "::set-output name=max::$max_version"
max_version=$(jq '.PYTHON_MAX' version.json)
echo "min=$min_version" >> $GITHUB_OUTPUT
echo "max=$max_version" >> $GITHUB_OUTPUT
lint:
needs: set-versions
runs-on: ubuntu-latest
Expand Down

0 comments on commit a6a097a

Please sign in to comment.