Skip to content

Commit

Permalink
Fix deprecated github action set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
nktpro committed Oct 12, 2023
1 parent 10f51b5 commit 29c6e93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: Determine current version
run: |-
CURRENT_VERSION=$(./release.sh get_release_version) || exit $?
echo "::set-output name=version::${CURRENT_VERSION}"
echo "version=${CURRENT_VERSION}" >> $GITHUB_OUTPUT
- name: Build intellij-scala-runners
run: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
name: Determine current version
run: |-
CURRENT_VERSION=$(./release.sh get_release_version) || exit $?
echo "::set-output name=version::${CURRENT_VERSION}"
echo "version=${CURRENT_VERSION}" >> $GITHUB_OUTPUT
- name: Push image manifest
env:
Expand Down

0 comments on commit 29c6e93

Please sign in to comment.